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

Side by Side Diff: chrome/common/extensions/docs/examples/api/processes/show_tabs/manifest.json

Issue 8318001: Adding `content_security_policy` to a few sample extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Docs. Zips. Created 9 years, 1 month 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": "Show Tabs in Process", 2 "name": "Show Tabs in Process",
3 "version": "1.0", 3 "version": "1.0",
4 "description": "Adds a browser action showing which tabs share the current tab 's process.", 4 "description": "Adds a browser action showing which tabs share the current tab 's process.",
5 "permissions": [ 5 "permissions": [
6 "experimental", "tabs" 6 "experimental", "tabs", "chrome://favicon/*"
7 ], 7 ],
8 "browser_action": { 8 "browser_action": {
9 "default_title": "Show Tabs in this Process", 9 "default_title": "Show Tabs in this Process",
10 "default_icon": "icon.png", 10 "default_icon": "icon.png",
11 "popup": "popup.html" 11 "popup": "popup.html"
12 } 12 },
13 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self'; img-src chrome://favicon"
13 } 14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698