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

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

Issue 844503005: Convert now component to use GCM rather than pushMessaging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: responseType = text to application/json Created 5 years, 10 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
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 "gcm",
14 "identity", 15 "identity",
15 "metricsPrivate", 16 "metricsPrivate",
16 "notifications", 17 "notifications",
17 "pushMessaging",
18 "storage", 18 "storage",
19 "tabs", 19 "tabs",
20 "webstorePrivate", 20 "webstorePrivate",
21 "*://*.google.com/*", 21 "*://*.google.com/*",
22 "*://*.gstatic.com/*", 22 "*://*.gstatic.com/*",
23 "https://*.googleapis.com/chromenow/v1/*", 23 "https://*.googleapis.com/chromenow/v1/*",
24 "https://*.googleapis.com/gcm/*",
24 "https://*.googleusercontent.com/*" 25 "https://*.googleusercontent.com/*"
25 ], 26 ],
26 "optional_permissions": ["background"], 27 "optional_permissions": ["background"],
27 "manifest_version": 2, 28 "manifest_version": 2,
28 "background": { 29 "background": {
29 "scripts": ["utility.js", "cards.js", "background.js"], 30 "scripts": ["utility.js", "cards.js", "background.js"],
30 "persistent": false 31 "persistent": false
31 }, 32 },
32 "oauth2": { 33 "oauth2": {
33 "auto_approve": true, 34 "auto_approve": true,
34 "scopes": ["https://www.googleapis.com/auth/googlenow"] 35 "scopes": [
36 "https://www.googleapis.com/auth/gcm",
37 "https://www.googleapis.com/auth/googlenow"
38 ]
35 } 39 }
36 } 40 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/google_now/background_unittest.gtestjs ('k') | chrome/browser/resources/google_now/utility.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698