Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Side by Side Diff: chrome/test/data/extensions/subscribe_page_action/manifest.json

Issue 430003: Revert change that disallowed content scripts access to file:// (Closed)
Patch Set: Can't go back, only through Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "name": "RSS Subscription Extension", 2 "name": "RSS Subscription Extension",
3 "description": "Adds one-click subscription to your toolbar", 3 "description": "Adds one-click subscription to your toolbar",
4 "version": "1.6.3", 4 "version": "1.6.4",
5 "permissions": [ 5 "permissions": [
6 "tabs", 6 "tabs",
7 "http://*/*" 7 "http://*/*"
8 ], 8 ],
9 "background_page": "background.html", 9 "background_page": "background.html",
10 "content_scripts": [ 10 "content_scripts": [
11 { 11 {
12 "matches": ["http://*/*"], 12 "matches": ["http://*/*", "file://*.*"],
13 "js": ["feed_finder.js"] 13 "js": ["feed_finder.js"]
14 } 14 }
15 ], 15 ],
16 "icons": { "128": "feed-icon-128x128.png" }, 16 "icons": { "128": "feed-icon-128x128.png" },
17 "page_action": { 17 "page_action": {
18 "default_title": "Subscribe to this feed", 18 "default_title": "Subscribe to this feed",
19 "default_icon": "feed-icon-16x16.png" 19 "default_icon": "feed-icon-16x16.png"
20 } 20 }
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698