aboutsummaryrefslogtreecommitdiffhomepage
path: root/manifest.json
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-09-10 10:12:33 -0400
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-09-10 10:12:33 -0400
commitb5bb57ff01f88bd9de411e1d963cfae2e285c82a (patch)
treed26c7ca2fa56ad6e48d791e8b169cf3186fbbc9f /manifest.json
parent6842b33e8157bfab60096001355c76ac06b63e6b (diff)
Gray out button on URL schemes the Wayback Machine doesn’t indexv1.0.1
Switch from a browser action to a page action, and disable the page action on some pages clearly not accessible through the Wayback Machine (e.g., pages under chrome://).
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json11
1 files changed, 7 insertions, 4 deletions
diff --git a/manifest.json b/manifest.json
index 3fcba3c..586022a 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,14 +1,14 @@
{
"manifest_version": 2,
"name": "Wayback Machine Lookup",
- "version": "1.0.0",
+ "version": "1.0.1",
"description": "Reopen the current tab in the Wayback Machine",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
- "browser_action": {
+ "page_action": {
"default_title": "Reopen the current tab in the Wayback Machine"
},
"author": "Benjamin Barenblat <bbaren@google.com>",
@@ -16,6 +16,9 @@
"persistent": false,
"scripts": ["background.js"]
},
- "minimum_chrome_version": "21",
- "permissions": ["activeTab"]
+ "minimum_chrome_version": "33",
+ "permissions": [
+ "activeTab",
+ "declarativeContent"
+ ]
}