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

Side by Side Diff: chrome/common/extensions/docs/examples/api/notifications/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": "Notification Demo", 2 "name": "Notification Demo",
3 "version": "1", 3 "version": "1",
4 "description": 4 "description":
5 "Shows off desktop notifications, which are \"toast\" windows that pop up on the desktop.", 5 "Shows off desktop notifications, which are \"toast\" windows that pop up on the desktop.",
6 "icons": {"16": "16.png", "48": "48.png", "128": "128.png"}, 6 "icons": {"16": "16.png", "48": "48.png", "128": "128.png"},
7 "permissions": ["tabs", "notifications"], 7 "permissions": ["tabs", "notifications"],
8 "options_page": "options.html", 8 "options_page": "options.html",
9 "background_page": "background.html" 9 "background_page": "background.html",
10 "content_security_policy": "script-src 'self'; img-src 'self'"
10 } 11 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698