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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/fx/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": "Chrome Sounds", 2 "name": "Chrome Sounds",
3 "version": "1.1", 3 "version": "1.1",
4 "description": "Enjoy a more magical and immersive experience when browsing th e web using the power of sound.", 4 "description": "Enjoy a more magical and immersive experience when browsing th e web using the power of sound.",
5 "background_page": "bg.html", 5 "background_page": "bg.html",
6 "options_page": "options.html", 6 "options_page": "options.html",
7 "icons": { "128": "icon.png" }, 7 "icons": { "128": "icon.png" },
8 "permissions": [ 8 "permissions": [
9 "tabs", 9 "tabs",
10 "bookmarks", 10 "bookmarks",
11 "http://*/*", 11 "http://*/*",
12 "https://*/*" 12 "https://*/*"
13 ], 13 ],
14 "content_scripts": [ { 14 "content_scripts": [ {
15 "matches": ["http://*/*", "https://*/*"], 15 "matches": ["http://*/*", "https://*/*"],
16 "js": ["content.js"], 16 "js": ["content.js"],
17 "all_frames": true 17 "all_frames": true
18 }] 18 }],
19 "content_security_policy": "default-src 'self'"
19 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698