diff options
Diffstat (limited to 'chrome/manifest.json')
-rw-r--r-- | chrome/manifest.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/manifest.json b/chrome/manifest.json new file mode 100644 index 0000000..fded481 --- /dev/null +++ b/chrome/manifest.json @@ -0,0 +1,28 @@ +{ + "manifest_version": 3, + "name": "Wayback Machine Lookup", + "version": "2.0.0", + "description": "Reopen the current tab in the Wayback Machine", + "icons": { + "16": "icon16.png", + "48": "icon48.png", + "128": "icon128.png" + }, + "action": { + "default_title": "Reopen the current tab in the Wayback Machine" + }, + "author": "Benjamin Barenblat <bbaren@google.com>", + "background": { + "service_worker": "background.js" + }, + "minimum_chrome_version": "88", + "options_ui": { + "page": "options.html" + }, + "permissions": [ + "activeTab", + "contextMenus", + "declarativeContent", + "storage" + ] +} |