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

Side by Side Diff: chrome/common/extensions/docs/examples/api/browserAction/set_page_color/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": "A browser action with a popup that changes the page color.", 2 "name": "A browser action with a popup that changes the page color.",
3 "version": "1.0", 3 "version": "1.0",
4 "permissions": [ 4 "permissions": [
5 "tabs", "http://*/*", "https://*/*" 5 "tabs", "http://*/*", "https://*/*"
6 ], 6 ],
7 "browser_action": { 7 "browser_action": {
8 "default_title": "Set this page's color.", 8 "default_title": "Set this page's color.",
9 "default_icon": "icon.png", 9 "default_icon": "icon.png",
10 "popup": "popup.html" 10 "popup": "popup.html"
11 } 11 },
12 } 12 "content_security_policy": "default-src 'self'"
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698