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

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

Issue 149046: PageActions can now specify multiple icons and switch between them... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « chrome/test/data/extensions/samples/subscribe_page_action/feed-icon-16x16-subscribed.png ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "background_page": "background.html", 8 "background_page": "background.html",
9 "content_scripts": [ 9 "content_scripts": [
10 { 10 {
11 "matches": ["http://*/*"], 11 "matches": ["http://*/*"],
12 "js": ["feed_finder.js"] 12 "js": ["feed_finder.js"]
13 } 13 }
14 ], 14 ],
15 "page_actions": [ 15 "page_actions": [
16 { 16 {
17 "id": "RssPageAction", 17 "id": "RssPageAction",
18 "name": "Subscribe to this feed", 18 "name": "Subscribe to this feed",
19 "icon": "feed-icon-16x16.png" 19 "icons": [
20 "feed-icon-16x16.png",
21 "feed-icon-16x16-subscribed.png"
22 ]
20 } 23 }
21 ] 24 ]
22 } 25 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/samples/subscribe_page_action/feed-icon-16x16-subscribed.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698