From 4593566dcbfd8c2df5f86a4edffb0afb604f87de Mon Sep 17 00:00:00 2001 From: "finnur@chromium.org" Date: Tue, 1 Dec 2009 20:57:04 +0000 Subject: Removing file:// permissions from the RSS subscription extension. This is no longer needed and prompts the scary warning on the install dialog. BUG=None TEST=I ran the browser tests that test the feed parsing and tested the extension on a news site with a feed. No issues found. Review URL: http://codereview.chromium.org/453018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33477 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/data/extensions/subscribe_page_action/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/test') diff --git a/chrome/test/data/extensions/subscribe_page_action/manifest.json b/chrome/test/data/extensions/subscribe_page_action/manifest.json index b33afa8..6891c4d 100644 --- a/chrome/test/data/extensions/subscribe_page_action/manifest.json +++ b/chrome/test/data/extensions/subscribe_page_action/manifest.json @@ -1,7 +1,7 @@ { "name": "RSS Subscription Extension", "description": "Adds one-click subscription to your toolbar", - "version": "1.6.4", + "version": "1.6.5", "permissions": [ "tabs", "http://*/*" @@ -9,7 +9,7 @@ "background_page": "background.html", "content_scripts": [ { - "matches": ["http://*/*", "file://*.*"], + "matches": ["http://*/*"], "js": ["feed_finder.js"] } ], -- cgit v1.1