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

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

Issue 20081002: Remove experimental permission from infobars API and moving it to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added license header Created 7 years, 4 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
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" : [ "experimental" ], 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" : [ "http://*/*" ],
17 "js" : [ "contentscript.js" ], 17 "js" : [ "contentscript.js" ],
18 "run_at" : "document_idle", 18 "run_at" : "document_idle",
19 "all_frames" : false 19 "all_frames" : false
20 } 20 }
21 ], 21 ],
22 "manifest_version": 2 22 "manifest_version": 2
23 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698