summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-01 20:57:04 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-01 20:57:04 +0000
commit4593566dcbfd8c2df5f86a4edffb0afb604f87de (patch)
tree9d6d321e704974485fdc979ea74d8edf305662c3 /chrome/test
parent7d7696c51fcba9470ecddf095d8a6013f538fe3b (diff)
downloadchromium_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/test')
-rw-r--r--chrome/test/data/extensions/subscribe_page_action/manifest.json4
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"]
}
],