Keep Popup Open when Opening a new Page

后端 未结 2 1014
遥遥无期
遥遥无期 2021-01-28 21:25

I have the following code to introduce my Chrome Extension.

// detect if this is the first time running
var first_run = false;
if (!localStorage[\'ran_before\'])         


        
2条回答
  •  执笔经年
    2021-01-28 21:53

    the method you are using is valid and should work, but you should probably just use the onInstalled event for consistency:

    chrome.runtime.onInstalled.addListener(function(info){
        if(info.reason == "install"){
            console.log("Installed!");
        }else if(info.reason == "update"){
            console.log("Updated!");
        }
    });
    

    It doesn't require new permissions, and will keep your install code clearly separated from the rest of your code.

提交回复
热议问题