From d538892da62ce2614b9493e64b79f8bac1438fb6 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Wed, 22 Feb 2023 20:47:39 +0100 Subject: Somewhat working options page Need to fix per tab thing --- manifest.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json index acfa2fd..b685674 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "description": "Keep an eye on your certs, because who can be certain what they are.", "author": "Nicholas Tay ", "version": "0.1.0", - "permissions": ["webRequest", "webRequestBlocking", ""], + "permissions": [ "webRequest", "webRequestBlocking", "", "storage" ], "background": { "scripts": [ "background.js" ] }, @@ -18,7 +18,13 @@ }, "browser_specific_settings": { "gecko": { - "strict_min_version": "62.0b5" + "strict_min_version": "62.0b5", + "id": "certain@nick.windblume.net" } + }, + "options_ui": { + "page": "options.html", + "open_in_tab": true, + "browser_style": false } } -- cgit