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

Side by Side Diff: chrome/browser/resources/google_now/manifest.json

Issue 303003002: Restrict Google Now URL Permissions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 //chrome-extension://pafkbggdmjlpgkdkcbjmhmfcdpncadgh 2 //chrome-extension://pafkbggdmjlpgkdkcbjmhmfcdpncadgh
3 "name": "Google Now", 3 "name": "Google Now",
4 "version": "1.2.0.1", 4 "version": "1.2.0.1",
5 "description": "Integrates Google Now into Chrome.", 5 "description": "Integrates Google Now into Chrome.",
6 "icons": { 6 "icons": {
7 "16": "images/icon16.png", 7 "16": "images/icon16.png",
8 "48": "images/icon48.png", 8 "48": "images/icon48.png",
9 "128": "images/icon128.png" 9 "128": "images/icon128.png"
10 }, 10 },
11 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkhqJr32OFD/bMXW4Md7jMfd7Lb wHXVc6x5bBQG5U+dloofoxrICDR20yur/40mQ8O//0sS1b8srvbab1CRlSrxoNCr9T80NAkfzx0gHyVS +p1Zow+1FzLMu9PiGwwFyN80HIB7GI/dIa0wC9K/2OrrzcHEhVH96DacTtWQqjfDVtZPjT7Xwv23dgoW cpbkRC86jMJot3dmX9xnn0KzoVc9gDOHSIkBLbkkr6Sp3LGXCCM4L0DJgxdFwaLr5WBzgC3y5x0/wwPI wN4PtIaK3BhH6njlksfnKwwIJ9iRT41V4BqbWu4mszO/7VJ3HJyw2DBpIc2grU9ZRRxrV3fRQG4wIDAQ AB", 11 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkhqJr32OFD/bMXW4Md7jMfd7Lb wHXVc6x5bBQG5U+dloofoxrICDR20yur/40mQ8O//0sS1b8srvbab1CRlSrxoNCr9T80NAkfzx0gHyVS +p1Zow+1FzLMu9PiGwwFyN80HIB7GI/dIa0wC9K/2OrrzcHEhVH96DacTtWQqjfDVtZPjT7Xwv23dgoW cpbkRC86jMJot3dmX9xnn0KzoVc9gDOHSIkBLbkkr6Sp3LGXCCM4L0DJgxdFwaLr5WBzgC3y5x0/wwPI wN4PtIaK3BhH6njlksfnKwwIJ9iRT41V4BqbWu4mszO/7VJ3HJyw2DBpIc2grU9ZRRxrV3fRQG4wIDAQ AB",
12 "permissions": [ 12 "permissions": [
13 "alarms", 13 "alarms",
14 "identity", 14 "identity",
15 "metricsPrivate", 15 "metricsPrivate",
16 "notifications", 16 "notifications",
17 "pushMessaging", 17 "pushMessaging",
18 "storage", 18 "storage",
19 "tabs", 19 "tabs",
20 "webstorePrivate", 20 "webstorePrivate",
21 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know 21 "*://*.google.com/*",
skare_ 2014/05/29 18:28:53 overall I'd be more worried about blocking somethi
robliao 2014/05/29 18:53:50 Issue discussed. On 2014/05/29 18:28:53, Travis Sk
22 // them. 22 "*://*.gstatic.com/*",
23 "<all_urls>" 23 "https://*.googleapis.com/chromenow/v1/*",
24 "https://*.googleusercontent.com/*"
rgustafson 2014/05/29 17:30:01 Did you find something that suggested that restaur
robliao 2014/05/29 17:35:19 Nope. The images I got back from my tests are eith
24 ], 25 ],
25 "optional_permissions": ["background"], 26 "optional_permissions": ["background"],
26 "manifest_version": 2, 27 "manifest_version": 2,
27 "background": { 28 "background": {
28 "scripts": ["utility.js", "cards.js", "background.js"], 29 "scripts": ["utility.js", "cards.js", "background.js"],
29 "persistent": false 30 "persistent": false
30 }, 31 },
31 "oauth2": { 32 "oauth2": {
32 "auto_approve": true, 33 "auto_approve": true,
33 "scopes": ["https://www.googleapis.com/auth/googlenow"] 34 "scopes": ["https://www.googleapis.com/auth/googlenow"]
34 } 35 }
35 } 36 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698