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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/oauth_contacts/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": "Sample - OAuth Contacts", 2 "name": "Sample - OAuth Contacts",
3 "version": "1.0.6", 3 "version": "1.0.6",
4 "icons": { "48": "img/icon-48.png", 4 "icons": { "48": "img/icon-48.png",
5 "128": "img/icon-128.png" }, 5 "128": "img/icon-128.png" },
6 "description": "Uses OAuth to connect to Google's contacts service and display a list of your contacts.", 6 "description": "Uses OAuth to connect to Google's contacts service and display a list of your contacts.",
7 "background_page": "background.html", 7 "background_page": "background.html",
8 "browser_action": { 8 "browser_action": {
9 "default_title": "", 9 "default_title": "",
10 "default_icon": "img/icon-19-off.png" 10 "default_icon": "img/icon-19-off.png"
11 }, 11 },
12 "permissions": [ 12 "permissions": [
13 "tabs", 13 "tabs",
14 "http://www.google.com/m8/feeds/*", 14 "http://www.google.com/m8/feeds/*",
15 "https://www.google.com/accounts/OAuthGetRequestToken", 15 "https://www.google.com/accounts/OAuthGetRequestToken",
16 "https://www.google.com/accounts/OAuthAuthorizeToken", 16 "https://www.google.com/accounts/OAuthAuthorizeToken",
17 "https://www.google.com/accounts/OAuthGetAccessToken" 17 "https://www.google.com/accounts/OAuthGetAccessToken"
18 ] 18 ],
19 "content_security_policy": "default-src 'self' www.google.com"
19 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698