fix: use correct manifest in build_release.py
This commit is contained in:
@@ -29,7 +29,7 @@ def main():
|
|||||||
create_zip('chrome-extension', 'release/ely-extension-chrome.zip', 'manifest-v3.json')
|
create_zip('chrome-extension', 'release/ely-extension-chrome.zip', 'manifest-v3.json')
|
||||||
|
|
||||||
# Firefox Extension (Manifest V2)
|
# 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.")
|
print("Build complete in /release folder.")
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,18 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "RS Wiki Ely.gg Price Display",
|
"name": "Spectral RS Wiki Price Display",
|
||||||
"version": "1.0",
|
"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": [
|
"permissions": [
|
||||||
"storage",
|
"storage",
|
||||||
"https://www.ely.gg/*",
|
"https://www.ely.gg/*"
|
||||||
"http://*/*",
|
|
||||||
"https://*/*"
|
|
||||||
],
|
],
|
||||||
"icons": {
|
"icons": {
|
||||||
"64": "img/64.png",
|
"64": "img/64.png",
|
||||||
@@ -15,7 +20,7 @@
|
|||||||
},
|
},
|
||||||
"browser_action": {
|
"browser_action": {
|
||||||
"default_icon": "img/64.png",
|
"default_icon": "img/64.png",
|
||||||
"default_title": "Configure Ely Extension",
|
"default_title": "Configure Spectral Extension",
|
||||||
"default_popup": "options.html"
|
"default_popup": "options.html"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
@@ -36,9 +41,5 @@
|
|||||||
],
|
],
|
||||||
"web_accessible_resources": [
|
"web_accessible_resources": [
|
||||||
"new_data.json"
|
"new_data.json"
|
||||||
],
|
]
|
||||||
"options_ui": {
|
|
||||||
"page": "options.html",
|
|
||||||
"open_in_tab": false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Binary file not shown.
Reference in New Issue
Block a user