diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-01 20:57:04 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-01 20:57:04 +0000 |
commit | 4593566dcbfd8c2df5f86a4edffb0afb604f87de (patch) | |
tree | 9d6d321e704974485fdc979ea74d8edf305662c3 /chrome | |
parent | 7d7696c51fcba9470ecddf095d8a6013f538fe3b (diff) | |
download | chromium_src-4593566dcbfd8c2df5f86a4edffb0afb604f87de.zip chromium_src-4593566dcbfd8c2df5f86a4edffb0afb604f87de.tar.gz chromium_src-4593566dcbfd8c2df5f86a4edffb0afb604f87de.tar.bz2 |
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
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/test/data/extensions/subscribe_page_action/manifest.json | 4 |
1 files changed, 2 insertions, 2 deletions
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"] } ], |