gpt4 book ai didi

google-chrome - 检测 Chrome 扩展程序首次运行/更新

转载 作者:行者123 更新时间:2023-12-03 04:59:09 26 4
gpt4 key购买 nike

扩展程序如何知道它是第一次运行还是刚刚更新,以便扩展程序可以执行某些特定操作? (例如打开帮助页面或更新设置)

最佳答案

在较新版本的 Chrome 中(自 Chrome 22 起),您可以使用 chrome.runtime.onInstalled事件,这更加干净。

示例:

// Check whether new version is installed
chrome.runtime.onInstalled.addListener(function(details){
if(details.reason == "install"){
console.log("This is a first install!");
}else if(details.reason == "update"){
var thisVersion = chrome.runtime.getManifest().version;
console.log("Updated from " + details.previousVersion + " to " + thisVersion + "!");
}
});

关于google-chrome - 检测 Chrome 扩展程序首次运行/更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2399389/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com