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

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

Issue 10407017: Convert RSS extension to use manifest version 2 (with CSP protection). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 months 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "background": { 2 "background": {
3 "page": "background.html" 3 "scripts": ["background.js"]
4 }, 4 },
5 "content_scripts": [ { 5 "content_scripts": [ {
6 "js": [ "sniff_common.js", "doc_start.js" ], 6 "js": [ "sniff_common.js", "doc_start.js" ],
7 "matches": [ "http://*/*", "https://*/*" ], 7 "matches": [ "http://*/*", "https://*/*" ],
8 "run_at": "document_start" 8 "run_at": "document_start"
9 }, { 9 }, {
10 "js": [ "sniff_common.js", "feed_finder.js" ], 10 "js": [ "sniff_common.js", "feed_finder.js" ],
11 "matches": [ "http://*/*", "https://*/*" ] 11 "matches": [ "http://*/*", "https://*/*" ]
12 } ], 12 } ],
13 "default_locale": "en", 13 "default_locale": "en",
14 "description": "__MSG_rss_subscription_description__", 14 "description": "__MSG_rss_subscription_description__",
15 "icons": { 15 "icons": {
16 "128": "feed-icon-128x128.png" 16 "128": "feed-icon-128x128.png"
17 }, 17 },
18 "name": "__MSG_rss_subscription_name__", 18 "manifest_version": 2,
19 "options_page": "options.html", 19 "name": "__MSG_rss_subscription_name__",
20 "page_action": { 20 "options_page": "options.html",
21 "default_icon": "feed-icon-16x16.png", 21 "page_action": {
22 "default_title": "__MSG_rss_subscription_default_title__", 22 "default_icon": "feed-icon-16x16.png",
23 "popup": "popup.html" 23 "default_title": "__MSG_rss_subscription_default_title__",
24 }, 24 "default_popup": "popup.html"
25 "permissions": [ "tabs", "http://*/*", "https://*/*" ], 25 },
26 "version": "2.1.3" 26 "permissions": [ "tabs", "http://*/*", "https://*/*" ],
27 "version": "2.2.0",
28 "web_accessible_resources": [
29 "iframe.js",
30 "style.css"
31 ]
27 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698