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

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

Issue 12843037: Convert the RSS extension to event pages to avoid a dedicated background process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 9 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 "persistent": false,
3 "scripts": [ "background.js" ] 4 "scripts": [ "background.js" ]
4 }, 5 },
5 "content_scripts": [ { 6 "content_scripts": [ {
6 "js": [ "sniff_common.js", "doc_start.js" ], 7 "js": [ "sniff_common.js", "doc_start.js" ],
7 "matches": [ "http://*/*", "https://*/*" ], 8 "matches": [ "http://*/*", "https://*/*" ],
8 "run_at": "document_start" 9 "run_at": "document_start"
9 }, { 10 }, {
10 "js": [ "sniff_common.js", "feed_finder.js" ], 11 "js": [ "sniff_common.js", "feed_finder.js" ],
11 "matches": [ "http://*/*", "https://*/*" ] 12 "matches": [ "http://*/*", "https://*/*" ]
12 } ], 13 } ],
13 "default_locale": "en", 14 "default_locale": "en",
14 "description": "__MSG_rss_subscription_description__", 15 "description": "__MSG_rss_subscription_description__",
15 "icons": { 16 "icons": {
16 "128": "feed-icon-128x128.png" 17 "128": "feed-icon-128x128.png"
17 }, 18 },
18 "manifest_version": 2, 19 "manifest_version": 2,
19 "name": "__MSG_rss_subscription_name__", 20 "name": "__MSG_rss_subscription_name__",
20 "options_page": "options.html", 21 "options_page": "options.html",
21 "page_action": { 22 "page_action": {
22 "default_icon": "feed-icon-16x16.png", 23 "default_icon": "feed-icon-16x16.png",
23 "default_popup": "popup.html", 24 "default_popup": "popup.html",
24 "default_title": "__MSG_rss_subscription_default_title__" 25 "default_title": "__MSG_rss_subscription_default_title__"
25 }, 26 },
26 "permissions": [ "tabs", "http://*/*", "https://*/*" ], 27 "permissions": [ "tabs", "http://*/*", "https://*/*" ],
27 "version": "2.2.1", 28 "version": "2.2.2",
28 "web_accessible_resources": [ "iframe.js", "style.css" ] 29 "web_accessible_resources": [ "iframe.js", "style.css" ]
29 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698