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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/proxy_configuration/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": "__MSG_extName__", 2 "name": "__MSG_extName__",
3 "version": "0.3", 3 "version": "0.3",
4 "description": "__MSG_extDescription__", 4 "description": "__MSG_extDescription__",
5 "default_locale": "en", 5 "default_locale": "en",
6 "browser_action": { 6 "browser_action": {
7 "default_icon": "icon16.png", 7 "default_icon": "icon16.png",
8 "popup": "popup.html" 8 "popup": "popup.html"
9 }, 9 },
10 "icons": { 10 "icons": {
11 "16": "icon16.png", 11 "16": "icon16.png",
12 "32": "icon32.png", 12 "32": "icon32.png",
13 "48": "icon48.png", 13 "48": "icon48.png",
14 "128": "icon128.png" 14 "128": "icon128.png"
15 }, 15 },
16 "background_page": "background.html", 16 "background_page": "background.html",
17 "permissions": [ 17 "permissions": [
18 "proxy" 18 "proxy"
19 ] 19 ],
20 "content_security_policy": "default-src 'self'"
20 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698