我想在使用chrome.runtime.onInstalled.addListener安装chrome扩展程序后转到url

时间:2017-01-08 07:37:47

标签: javascript google-chrome-extension

我想在使用"chrome.runtime.onInstalled.addListener"安装Chrome扩展程序后立即转到网址。但是当我重新安装chrome扩展时没有任何反应。

    chrome.runtime.onInstalled.addListener(function (details) {
    if (details.reason == "install") { 
        window.location= "html/ide.html";
    }
});
你能帮帮我们吗?

0 个答案:

没有答案