diff options
author | Benjamin Barenblat <bbaren@google.com> | 2024-05-20 15:45:42 -0400 |
---|---|---|
committer | Benjamin Barenblat <bbaren@google.com> | 2024-05-20 15:45:42 -0400 |
commit | 9d7b827c914f1d0ffaef41d93b4539885399862a (patch) | |
tree | 25715201f7e00f7d8f3971ea64de4371dab68019 /firefox/manifest.json | |
parent | 6207f3fef1363cbde4e9b886e05c97ac6439d469 (diff) |
Create Firefox version
Continue to use manifest v2 for the Firefox version to avoid
https://bugzil.la/1851083.
Diffstat (limited to 'firefox/manifest.json')
-rw-r--r-- | firefox/manifest.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/firefox/manifest.json b/firefox/manifest.json new file mode 100644 index 0000000..e6fa3c4 --- /dev/null +++ b/firefox/manifest.json @@ -0,0 +1,33 @@ +{ + "manifest_version": 2, + "name": "Wayback Machine Lookup", + "version": "2.0.0", + "description": "Reopen the current tab in the Wayback Machine", + "icons": { + "48": "icon.svg", + "96": "icon.svg" + }, + "page_action": { + "default_icon": "icon.svg", + "default_title": "Open in the Wayback Machine", + "show_matches": ["ftp://*/*", "http://*/*", "https://*/*"] + }, + "author": "Benjamin Barenblat <bbaren@google.com>", + "background": { + "scripts": ["background.js"] + }, + "browser_specific_settings": { + "gecko": { + "id": "{fbd65aac-1f67-49ca-93fd-77de0bbf9bea}", + "strict_min_version": "59.0" + } + }, + "options_ui": { + "page": "options.html" + }, + "permissions": [ + "activeTab", + "contextMenus", + "storage" + ] +} |