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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/gdocs/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 Document List Viewer", 2 "name": "Google Document List Viewer",
3 "version": "1.0.2", 3 "version": "1.0.2",
4 "icons": { 4 "icons": {
5 "48": "img/docs_spreadsheets-48.gif", 5 "48": "img/docs_spreadsheets-48.gif",
6 "128": "img/docs_spreadsheets-128.gif" 6 "128": "img/docs_spreadsheets-128.gif"
7 }, 7 },
8 "description": "Demonstrates how to use OAuth to connect the Google Documents List Data API.", 8 "description": "Demonstrates how to use OAuth to connect the Google Documents List Data API.",
9 "background_page": "background.html", 9 "background_page": "background.html",
10 "options_page": "options.html", 10 "options_page": "options.html",
11 "browser_action": { 11 "browser_action": {
12 "default_title": "List your Google Docs", 12 "default_title": "List your Google Docs",
13 "default_icon": "img/docs_spreadsheets-32.gif", 13 "default_icon": "img/docs_spreadsheets-32.gif",
14 "popup": "popup.html" 14 "popup": "popup.html"
15 }, 15 },
16 "permissions": [ 16 "permissions": [
17 "tabs", 17 "tabs",
18 "https://docs.google.com/feeds/*", 18 "https://docs.google.com/feeds/*",
19 "https://www.google.com/accounts/OAuthGetRequestToken", 19 "https://www.google.com/accounts/OAuthGetRequestToken",
20 "https://www.google.com/accounts/OAuthAuthorizeToken", 20 "https://www.google.com/accounts/OAuthAuthorizeToken",
21 "https://www.google.com/accounts/OAuthGetAccessToken" 21 "https://www.google.com/accounts/OAuthGetAccessToken"
22 ] 22 ],
23 "content_security_policy": "default-src 'self' https://docs.google.com https:/ /www.google.com"
23 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698