Show option page in background when update

This commit is contained in:
sienori 2017-12-23 03:26:15 +09:00
parent 77f7545772
commit 112e2f0ca9

View file

@ -4,7 +4,10 @@
//初回起動時にオプションページを表示して設定を初期化 //初回起動時にオプションページを表示して設定を初期化
browser.runtime.onInstalled.addListener(function () { browser.runtime.onInstalled.addListener(function () {
browser.runtime.openOptionsPage(); browser.tabs.create({
url: "options/options.html#information",
active: false
});
}); });
let S = new settingsObj() let S = new settingsObj()