Show option page in background when update
This commit is contained in:
parent
77f7545772
commit
112e2f0ca9
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue