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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/email_this_page/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": "Email this page (by Google)", 2 "name": "Email this page (by Google)",
3 "description": "This extension adds an email button to the toolbar which allow s you to email the page link using your default mail client or Gmail.", 3 "description": "This extension adds an email button to the toolbar which allow s you to email the page link using your default mail client or Gmail.",
4 "version": "1.2.5", 4 "version": "1.2.5",
5 "background_page": "background.html", 5 "background_page": "background.html",
6 "icons": { "128": "mail_128x128.png" }, 6 "icons": { "128": "mail_128x128.png" },
7 "options_page": "options.html", 7 "options_page": "options.html",
8 "permissions": [ 8 "permissions": [
9 "tabs", "http://*/*", "https://*/*" 9 "tabs", "http://*/*", "https://*/*"
10 ], 10 ],
11 "browser_action": { 11 "browser_action": {
12 "default_title": "Email this page", 12 "default_title": "Email this page",
13 "default_icon": "email_16x16.png" 13 "default_icon": "email_16x16.png"
14 } 14 },
15 } 15 "content_security_policy": "default-src 'self' https://mail.google.com"
abarth-chromium 2011/08/12 22:08:00 Types of resources?
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698