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

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

Issue 126143: Converting the RSS subscription page to use a background page, as opposed to ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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
Property Changes:
Added: svn:eol-style
+ LF
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.0", 4 "version": "1.0",
5 "permissions": [ 5 "permissions": [
6 "http://*/*" 6 "http://*/*"
7 ], 7 ],
8 "toolstrips": [ 8 "background_page": "background.html",
9 "toolstrip.html"
10 ],
11 "content_scripts": [ 9 "content_scripts": [
12 { 10 {
13 "matches": ["http://*/*"], 11 "matches": ["http://*/*"],
14 "js": ["feed_finder.js"] 12 "js": ["feed_finder.js"]
15 } 13 }
16 ], 14 ],
17 "page_actions": [ 15 "page_actions": [
18 { 16 {
19 "id": "RssPageAction", 17 "id": "RssPageAction",
20 "name": "The PageAction for RSS subscriptions", 18 "name": "The PageAction for RSS subscriptions",
21 "tooltip": "Click to subscribe to this feed", 19 "tooltip": "Click to subscribe to this feed",
22 "icon": "feed-icon-16x16.png", 20 "icon": "feed-icon-16x16.png",
23 "type": "tab" 21 "type": "tab"
24 } 22 }
25 ] 23 ]
26 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698