我想在使用"chrome.runtime.onInstalled.addListener"
安装Chrome扩展程序后立即转到网址。但是当我重新安装chrome扩展时没有任何反应。
chrome.runtime.onInstalled.addListener(function (details) {
if (details.reason == "install") {
window.location= "html/ide.html";
}
});
你能帮帮我们吗?