Chromium Code Reviews| Index: chrome/browser/resources/google_now/manifest.json |
| diff --git a/chrome/browser/resources/google_now/manifest.json b/chrome/browser/resources/google_now/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..eb63775ac4e96017ba000881b85774a0046c89ca |
| --- /dev/null |
| +++ b/chrome/browser/resources/google_now/manifest.json |
| @@ -0,0 +1,20 @@ |
| +{ |
| + //chrome-extension://pmofbkohncoogjjhahejjfbppikbjigm |
| + "name": "Google Now", |
| + "version": "1.0", |
| + "description": "Integrates Google Now into Chrome.", |
| + "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDh/njCc/GTuP7uYix39uinhkX+7RyEoMaOQyoc065gsQ5b9cLpZToK78xgpsc9ThrpLVDOwqz6cGeLgIk+kPeRMQe07T+/mh3U5klegDx9pfr9T3aiRNQnJYJv8niVs9aJ/sBSqxtHt2LlhEt9ajFXue7Q3LkzyTlXpxoEFH1keQIDAQAB", |
| + "permissions": [ |
| + "geolocation", |
| + // TODO(vadimt): Replace <all_urls> with real URL patterns once we know |
| + // them. |
| + "<all_urls>", |
| + "experimental", |
| + "alarms" |
| + ], |
| + "manifest_version": 2, |
| + "background": { |
| + "scripts": ["background.js"], |
| + "persistent": false |
| + } |
| + } |
|
Matt Perry
2013/01/24 18:34:38
nit: indent
vadimt
2013/01/25 21:48:28
Done.
|