about summary refs log tree commit diff stats
path: root/src/pages/background
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/background')
-rw-r--r--src/pages/background/background.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/pages/background/background.js b/src/pages/background/background.js
index 22499579..021ad4cc 100644
--- a/src/pages/background/background.js
+++ b/src/pages/background/background.js
@@ -9,10 +9,7 @@ window.browser = window.browser || window.chrome
 browser.runtime.onInstalled.addListener(async details => {
 	if (details.previousVersion != browser.runtime.getManifest().version) {
 		// ^Used to prevent this running when debugging with auto-reload
-		browser.tabs.create({
-			url: browser.runtime.getURL("/pages/options/new_release.html")
-		});
-
+		browser.runtime.openOptionsPage()
 		switch (details.reason) {
 			case "install":
 				browser.storage.local.get("options", async r => {