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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/wave/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": "Google Wave Notifier", 2 "name": "Google Wave Notifier",
3 "version": "1.0.1", 3 "version": "1.0.1",
4 "description": "Find out when you have new waves and preview them fast.", 4 "description": "Find out when you have new waves and preview them fast.",
5 "icons": {"16": "16.png", "48": "48.png", "128": "128.png"}, 5 "icons": {"16": "16.png", "48": "48.png", "128": "128.png"},
6 "permissions": [ 6 "permissions": [
7 "tabs", 7 "tabs",
8 "https://www.google.com/", 8 "https://www.google.com/",
9 "http://www-opensocial.googleusercontent.com/" 9 "http://www-opensocial.googleusercontent.com/"
10 ], 10 ],
11 "background_page": "background.html", 11 "background_page": "background.html",
12 "options_page": "options.html", 12 "options_page": "options.html",
13 "browser_action": { 13 "browser_action": {
14 "default_icon": "unauthorized.png", 14 "default_icon": "unauthorized.png",
15 "default_title": "Preview new waves", 15 "default_title": "Preview new waves",
16 "popup": "popup.html" 16 "popup": "popup.html"
17 } 17 },
18 "content_security_policy": "default-src 'self' https://www.google.com https:// wave.google.com http://www-opensocial.googleusercontent.com"
18 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698