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

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

Issue 7633017: Adding content_security_policy to sample extensions when relevant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name" : "SandwichBar", 2 "name" : "SandwichBar",
3 "version" : "1.0.0", 3 "version" : "1.0.0",
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_page" : "background.html", 5 "background_page" : "background.html",
6 "permissions" : [ "experimental" ], 6 "permissions" : [ "experimental" ],
7 "icons" : { 7 "icons" : {
8 "16" : "sandwich-16.png", 8 "16" : "sandwich-16.png",
9 "48" : "sandwich-48.png", 9 "48" : "sandwich-48.png",
10 "128" : "sandwich-128.png" 10 "128" : "sandwich-128.png"
11 }, 11 },
12 "content_scripts" : [ 12 "content_scripts" : [
13 { 13 {
14 "matches" : [ "http://*/*" ], 14 "matches" : [ "http://*/*" ],
15 "js" : [ "contentscript.js" ], 15 "js" : [ "contentscript.js" ],
16 "run_at" : "document_idle", 16 "run_at" : "document_idle",
17 "all_frames" : false 17 "all_frames" : false
18 } 18 }
19 ] 19 ],
20 "content_security_policy": "default-src 'self'"
20 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698