我正在使用WebExtensions将我的扩展程序从Chrome移植到Firefox。
没有支持" browser.runtime.onInstalled" -event所以真的没办法捕获这个事件吗?
答案 0 :(得分:0)
您必须使用本地存储空间。卸载时,存储将被清除。禁用时,不会清除存储空间。
browser.storage.get('local', 'install_date').then(function(install_date) {
if (!install_date) {
// just installed
browser.storage.set('local', {
install_date: Date.now()
});
}
});