Chromium Code Reviews| Index: chrome/browser/resources/genius_app/manifest.json |
| diff --git a/chrome/browser/resources/genius_app/manifest.json b/chrome/browser/resources/genius_app/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7da104d6aeae77cd7869e8025d47ca4468fbd7df |
| --- /dev/null |
| +++ b/chrome/browser/resources/genius_app/manifest.json |
| @@ -0,0 +1,27 @@ |
| +{ |
|
Dmitry Polukhin
2013/09/09 15:42:39
If this app is chromeos specific and you are not g
davidyu
2013/09/10 00:30:56
Done.
|
| + "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDNAtiHknM7LHSwE9YKiFFvYvsp0TkfIriWfrjz53odJD0jEbOtyNhVXqdBOdtcenbSraxt7oJ9GlIfUkvBMP5iOpcrJkYfuNJv8ANHTKC79TjGXRg76TjiqpNI+R2NiVav1pXlzYZpu0ToaiaOcr3IgoGsvIUPcC6pd1U5AjdrCQIDAQAB", |
| + "manifest_version": 2, |
| + "name": "Genius", |
| + "description": "A Genius App", |
| + "version": "0.2", |
| + "minimum_chrome_version": "28", |
| + "default_locale": "en", |
| + "icons": { |
| + "16": "icon/16.png", |
| + "256": "icon/256.png" |
| + }, |
| + "app": { |
| + "background": { |
| + "persistent": false, |
| + "page": "background.html" |
| + } |
| + }, |
| + "permissions": [ |
| + "chromeosInfoPrivate", |
| + "unlimitedStorage", |
| + "http://www.google.com/help/hc/*", |
|
Dmitry Polukhin
2013/09/09 15:42:39
Do you really need HTTP URLs? I would only use HTT
davidyu
2013/09/10 00:30:56
Done.
|
| + "http://storage.googleapis.com/*", |
| + "https://www-googleapis-test.sandbox.google.com/*", |
| + "https://www.googleapis.com/*" |
| + ] |
| +} |