diff options
author | Benjamin Barenblat <bbaren@google.com> | 2022-10-20 17:37:24 -0400 |
---|---|---|
committer | Benjamin Barenblat <bbaren@google.com> | 2022-10-20 18:41:47 -0400 |
commit | 6207f3fef1363cbde4e9b886e05c97ac6439d469 (patch) | |
tree | 5730a610d1151286c7d42e5f833b8c882b7def73 /manifest.json | |
parent | 9111d9b176a9a97d83bb36d48bd415389ca1c0ad (diff) |
Update extension for Manifest V3v2.0.0
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/manifest.json b/manifest.json index b8a3c08..fded481 100644 --- a/manifest.json +++ b/manifest.json @@ -1,24 +1,22 @@ { - "manifest_version": 2, + "manifest_version": 3, "name": "Wayback Machine Lookup", - "version": "1.2.0", + "version": "2.0.0", "description": "Reopen the current tab in the Wayback Machine", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, - "page_action": { + "action": { "default_title": "Reopen the current tab in the Wayback Machine" }, "author": "Benjamin Barenblat <bbaren@google.com>", "background": { - "persistent": false, - "scripts": ["background.js"] + "service_worker": "background.js" }, - "minimum_chrome_version": "35", + "minimum_chrome_version": "88", "options_ui": { - "chrome_style": true, "page": "options.html" }, "permissions": [ |