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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/imageinfo/manifest.json

Issue 8310002: Adding `content_security_policy` to imageinfo extension. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Docs. Created 9 years, 2 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" : "Imageinfo", 2 "name" : "Imageinfo",
3 "version" : "1.0.0", 3 "version" : "1.0.1",
4 "description" : "Get image info for images, including EXIF data", 4 "description" : "Get image info for images, including EXIF data",
5 "background_page" : "background.html", 5 "background_page" : "background.html",
6 "permissions" : [ 6 "permissions" : [
7 "contextMenus", 7 "contextMenus",
8 "tabs", 8 "tabs",
9 "http://*/*", 9 "http://*/*",
10 "https://*/*" 10 "https://*/*"
11 ], 11 ],
12 "minimum_chrome_version" : "6.0.0.0", 12 "minimum_chrome_version" : "6.0.0.0",
13 "icons" : { 13 "icons" : {
14 "16" : "imageinfo-16.png", 14 "16" : "imageinfo-16.png",
15 "48" : "imageinfo-48.png", 15 "48" : "imageinfo-48.png",
16 "128" : "imageinfo-128.png" 16 "128" : "imageinfo-128.png"
17 } 17 },
18 "content_security_policy": "default-src 'self'; connect-src *; img-src *"
19
18 } 20 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/extensions/imageinfo/info.js ('k') | chrome/common/extensions/docs/samples.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698