diff --git a/build_release.py b/build_release.py index 0b7a4a3..1c97adf 100644 --- a/build_release.py +++ b/build_release.py @@ -29,7 +29,7 @@ def main(): create_zip('chrome-extension', 'release/ely-extension-chrome.zip', 'manifest-v3.json') # Firefox Extension (Manifest V2) - create_zip('chrome-extension', 'release/ely-extension-firefox.zip', 'manifest.json') + create_zip('chrome-extension', 'release/ely-extension-firefox.zip', 'manifest-firefox.json') print("Build complete in /release folder.") diff --git a/chrome-extension/manifest.json b/chrome-extension/manifest.json index 6519b40..e1b5e6e 100644 --- a/chrome-extension/manifest.json +++ b/chrome-extension/manifest.json @@ -1,13 +1,18 @@ { "manifest_version": 2, - "name": "RS Wiki Ely.gg Price Display", + "name": "Spectral RS Wiki Price Display", "version": "1.0", - "description": "Displays item IDs from ely.gg on RuneScape Wiki pages", + "description": "Displays item IDs from ely.gg on RuneScape Wiki pages.", + "browser_specific_settings": { + "gecko": { + "id": "spectral-wiki-price@ely.gg", + "strict_min_version": "109.0", + "data_collection_permissions": [] + } + }, "permissions": [ "storage", - "https://www.ely.gg/*", - "http://*/*", - "https://*/*" + "https://www.ely.gg/*" ], "icons": { "64": "img/64.png", @@ -15,7 +20,7 @@ }, "browser_action": { "default_icon": "img/64.png", - "default_title": "Configure Ely Extension", + "default_title": "Configure Spectral Extension", "default_popup": "options.html" }, "background": { @@ -36,9 +41,5 @@ ], "web_accessible_resources": [ "new_data.json" - ], - "options_ui": { - "page": "options.html", - "open_in_tab": false - } + ] } \ No newline at end of file diff --git a/release/ely-extension-firefox.zip b/release/ely-extension-firefox.zip index 6557afc..c0f3f55 100644 Binary files a/release/ely-extension-firefox.zip and b/release/ely-extension-firefox.zip differ