Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 //chrome-extension://pmofbkohncoogjjhahejjfbppikbjigm | 2 //chrome-extension://pafkbggdmjlpgkdkcbjmhmfcdpncadgh |
|
robliao
2013/10/15 00:04:55
How often do we expect this to change from here?
vadimt
2013/10/15 01:25:47
This one should be last. The old one was retrieved
| |
| 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 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDh/njCc/GTuP7uYix39uinhkX+7RyEoM aOQyoc065gsQ5b9cLpZToK78xgpsc9ThrpLVDOwqz6cGeLgIk+kPeRMQe07T+/mh3U5klegDx9pfr9T3 aiRNQnJYJv8niVs9aJ/sBSqxtHt2LlhEt9ajFXue7Q3LkzyTlXpxoEFH1keQIDAQAB", | 6 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkhqJr32OFD/bMXW4Md7jMfd7Lb wHXVc6x5bBQG5U+dloofoxrICDR20yur/40mQ8O//0sS1b8srvbab1CRlSrxoNCr9T80NAkfzx0gHyVS +p1Zow+1FzLMu9PiGwwFyN80HIB7GI/dIa0wC9K/2OrrzcHEhVH96DacTtWQqjfDVtZPjT7Xwv23dgoW cpbkRC86jMJot3dmX9xnn0KzoVc9gDOHSIkBLbkkr6Sp3LGXCCM4L0DJgxdFwaLr5WBzgC3y5x0/wwPI wN4PtIaK3BhH6njlksfnKwwIJ9iRT41V4BqbWu4mszO/7VJ3HJyw2DBpIc2grU9ZRRxrV3fRQG4wIDAQ AB", |
| 7 "permissions": [ | 7 "permissions": [ |
| 8 "alarms", | 8 "alarms", |
| 9 "location", | 9 "location", |
| 10 "metricsPrivate", | 10 "metricsPrivate", |
| 11 "notifications", | 11 "notifications", |
| 12 "preferencesPrivate", | 12 "preferencesPrivate", |
| 13 "storage", | 13 "storage", |
| 14 "tabs", | 14 "tabs", |
| 15 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know | 15 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know |
| 16 // them. | 16 // them. |
| 17 "<all_urls>", | 17 "<all_urls>", |
| 18 "identity" | 18 "identity", |
|
robliao
2013/10/15 00:04:55
Alphabetize
vadimt
2013/10/15 01:25:47
Done.
| |
| 19 "pushMessaging" | |
| 19 ], | 20 ], |
| 20 "optional_permissions": ["background"], | 21 "optional_permissions": ["background"], |
| 21 "manifest_version": 2, | 22 "manifest_version": 2, |
| 22 "background": { | 23 "background": { |
| 23 "scripts": ["utility.js", "cards.js", "background.js"], | 24 "scripts": ["utility.js", "cards.js", "background.js"], |
| 24 "persistent": false | 25 "persistent": false |
| 25 }, | 26 }, |
| 26 // TODO(vadimt): Remove using chrome.omnibox. | 27 // TODO(vadimt): Remove using chrome.omnibox. |
| 27 "omnibox": { "keyword" : "gn_url" }, | 28 "omnibox": { "keyword" : "gn_url" }, |
| 28 "oauth2": { | 29 "oauth2": { |
| 29 "auto_approve": true, | 30 "auto_approve": true, |
| 30 "scopes": ["https://www.googleapis.com/auth/googlenow"] | 31 "scopes": ["https://www.googleapis.com/auth/googlenow"] |
| 31 } | 32 } |
| 32 } | 33 } |
| OLD | NEW |