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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/news/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": "2.0", 3 "version": "2.0",
4 "description": "__MSG_extDesc__", 4 "description": "__MSG_extDesc__",
5 "icons": { "128": "images/news_icon.png" }, 5 "icons": { "128": "images/news_icon.png" },
6 "default_locale":"en", 6 "default_locale":"en",
7 "browser_action": { 7 "browser_action": {
8 "default_title": "__MSG_ext_default_title__", 8 "default_title": "__MSG_ext_default_title__",
9 "default_icon": "images/news_action.png", 9 "default_icon": "images/news_action.png",
10 "popup": "views/feed.html" 10 "popup": "views/feed.html"
11 }, 11 },
12 "permissions": [ 12 "permissions": [
13 "tabs", 13 "tabs",
14 "http://news.google.com/*" 14 "http://news.google.com/*"
15 ], 15 ],
16 "options_page": "views/options.html", 16 "options_page": "views/options.html",
17 "background_page": "views/background.html" 17 "background_page": "views/background.html",
18 "content_security_policy": "default-src 'self' http://news.google.com"
18 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698