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

Side by Side Diff: chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/manifest.json

Issue 8309001: Adding `content_security_policy` to a few sample extensions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: License and whitespace. 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": "FirePHP for Chrome", 2 "name": "FirePHP for Chrome",
3 "version": "1.0", 3 "version": "1.0",
4 "minimum_chrome_version": "10.0", 4 "minimum_chrome_version": "10.0",
5 "description": "Extends the Developer Tools, adding support for parsing FirePH P messages from server", 5 "description": "Extends the Developer Tools, adding support for parsing FirePH P messages from server",
6 "devtools_page": "devtools.html", 6 "devtools_page": "devtools.html",
7 "background_page": "background.html", 7 "background_page": "background.html",
8 "permissions": [ 8 "permissions": [
9 "experimental", 9 "experimental",
10 "tabs", 10 "tabs",
11 "http://*/*", 11 "http://*/*",
12 "https://*/*" 12 "https://*/*"
13 ] 13 ],
14 "content_security_policy": "default-src 'self'"
14 } 15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698