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

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

Issue 56643002: Add icon for Now component extension (to appear in Notification settings dialog) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: (add bug id) Created 7 years, 1 month 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
« no previous file with comments | « chrome/browser/resources/google_now/images/icon48.png ('k') | 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": {
7 "16": "images/icon16.png",
8 "48": "images/icon48.png",
9 "128": "images/icon128.png"
10 },
6 "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",
7 "permissions": [ 12 "permissions": [
8 "alarms", 13 "alarms",
9 "identity", 14 "identity",
10 "location", 15 "location",
11 "metricsPrivate", 16 "metricsPrivate",
12 "notifications", 17 "notifications",
13 "preferencesPrivate", 18 "preferencesPrivate",
14 "pushMessaging", 19 "pushMessaging",
15 "storage", 20 "storage",
16 "tabs", 21 "tabs",
17 "webstorePrivate", 22 "webstorePrivate",
18 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know 23 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know
19 // them. 24 // them.
20 "<all_urls>" 25 "<all_urls>"
21 ], 26 ],
22 "optional_permissions": ["background"], 27 "optional_permissions": ["background"],
23 "manifest_version": 2, 28 "manifest_version": 2,
24 "background": { 29 "background": {
25 "scripts": ["utility.js", "cards.js", "background.js"], 30 "scripts": ["utility.js", "cards.js", "background.js"],
26 "persistent": false 31 "persistent": false
27 }, 32 },
28 "oauth2": { 33 "oauth2": {
29 "auto_approve": true, 34 "auto_approve": true,
30 "scopes": ["https://www.googleapis.com/auth/googlenow"] 35 "scopes": ["https://www.googleapis.com/auth/googlenow"]
31 } 36 }
32 } 37 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/google_now/images/icon48.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698