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

Side by Side Diff: chrome/common/extensions/docs/examples/api/browserAction/set_icon_path/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: 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": "A browser action which changes its icon when clicked.", 2 "name": "A browser action which changes its icon when clicked.",
3 "version": "1.0", 3 "version": "1.1",
4 "background_page": "background.html", 4 "background_page": "background.html",
5 "permissions": [ 5 "permissions": [
6 "tabs", "http://*/*" 6 "tabs", "http://*/*"
7 ], 7 ],
8 "browser_action": { 8 "browser_action": {
9 "name": "Click to change the icon's color" 9 "name": "Click to change the icon's color"
10 } 10 },
11 "content_security_policy": "default-src 'self';"
abarth-chromium 2011/10/15 08:55:25 No need for a ; at the end.
11 } 12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698