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

Side by Side Diff: chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json

Issue 115873002: The sandwich is no longer a lie. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years 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 | « no previous file | 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" : "SandwichBar", 2 "name" : "SandwichBar",
3 "version" : "1.0.1", 3 "version" : "1.0.1",
4 "description" : "Shows an infobar on pages which contain the word 'sandwich'", 4 "description" : "Shows an infobar on pages which contain the word 'sandwich'",
5 "background" : { 5 "background" : {
6 "scripts": ["background.js"] 6 "scripts": ["background.js"]
7 }, 7 },
8 "permissions" : [ "infobars" ], 8 "permissions" : [ "infobars" ],
9 "icons" : { 9 "icons" : {
10 "16" : "sandwich-16.png", 10 "16" : "sandwich-16.png",
11 "48" : "sandwich-48.png", 11 "48" : "sandwich-48.png",
12 "128" : "sandwich-128.png" 12 "128" : "sandwich-128.png"
13 }, 13 },
14 "content_scripts" : [ 14 "content_scripts" : [
15 { 15 {
16 "matches" : [ "http://*/*" ], 16 "matches" : [
17 "http://*/*",
18 "https://*/*"
19 ],
17 "js" : [ "contentscript.js" ], 20 "js" : [ "contentscript.js" ],
18 "run_at" : "document_idle", 21 "run_at" : "document_idle",
19 "all_frames" : false 22 "all_frames" : false
20 } 23 }
21 ], 24 ],
22 "manifest_version": 2 25 "manifest_version": 2
23 } 26 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698