From b5bb57ff01f88bd9de411e1d963cfae2e285c82a Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Mon, 10 Sep 2018 10:12:33 -0400 Subject: Gray out button on URL schemes the Wayback Machine doesn’t index MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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://). --- manifest.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'manifest.json') 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 ", @@ -16,6 +16,9 @@ "persistent": false, "scripts": ["background.js"] }, - "minimum_chrome_version": "21", - "permissions": ["activeTab"] + "minimum_chrome_version": "33", + "permissions": [ + "activeTab", + "declarativeContent" + ] } -- cgit v1.2.3