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

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

Issue 178028: Fix samples extensions. Add icons (nothing building or testable) (Closed)
Patch Set: Created 11 years, 3 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
« no previous file with comments | « chrome/test/data/extensions/samples/subscribe_page_action/feed-icon-128x128.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.2.5", 4 "version": "1.3",
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://*/*", "file://*.*"], 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 "page_actions": [ 17 "page_actions": [
17 { 18 {
18 "id": "RssPageAction", 19 "id": "RssPageAction",
19 "name": "Subscribe to this feed", 20 "name": "Subscribe to this feed",
20 "icons": [ 21 "icons": [
21 "feed-icon-16x16.png" 22 "feed-icon-16x16.png"
22 ] 23 ]
23 } 24 }
24 ] 25 ]
25 } 26 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/samples/subscribe_page_action/feed-icon-128x128.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698