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/buildbot/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": "Chromium Buildbot Monitor", 2 "name": "Chromium Buildbot Monitor",
3 "version": "0.7.6", 3 "version": "0.7.6",
4 "description": "Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.", 4 "description": "Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.",
5 "icons": { "128": "icon.png" }, 5 "icons": { "128": "icon.png" },
6 "background_page": "bg.html", 6 "background_page": "bg.html",
7 "permissions": [ 7 "permissions": [
8 "notifications", 8 "notifications",
9 "http://build.chromium.org/", 9 "http://build.chromium.org/",
10 "http://chromium-status.appspot.com/" 10 "http://chromium-status.appspot.com/"
11 ], 11 ],
12 "browser_action": { 12 "browser_action": {
13 "default_title": "", 13 "default_title": "",
14 "default_icon": "chromium.png", 14 "default_icon": "chromium.png",
15 "popup": "popup.html" 15 "popup": "popup.html"
16 }, 16 },
17 "options_page": "options.html" 17 "options_page": "options.html",
18 "content_security_policy": "default-src 'self' http://build.chromium.org http: //chromium-status.appspot.com"
abarth-chromium 2011/08/12 22:08:00 Same question here.
18 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698