Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
|
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.
| |
| 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDNAtiHknM7LHSwE9YKiFFvYvsp0TkfIr iWfrjz53odJD0jEbOtyNhVXqdBOdtcenbSraxt7oJ9GlIfUkvBMP5iOpcrJkYfuNJv8ANHTKC79TjGXR g76TjiqpNI+R2NiVav1pXlzYZpu0ToaiaOcr3IgoGsvIUPcC6pd1U5AjdrCQIDAQAB", | |
| 3 "manifest_version": 2, | |
| 4 "name": "Genius", | |
| 5 "description": "A Genius App", | |
| 6 "version": "0.2", | |
| 7 "minimum_chrome_version": "28", | |
| 8 "default_locale": "en", | |
| 9 "icons": { | |
| 10 "16": "icon/16.png", | |
| 11 "256": "icon/256.png" | |
| 12 }, | |
| 13 "app": { | |
| 14 "background": { | |
| 15 "persistent": false, | |
| 16 "page": "background.html" | |
| 17 } | |
| 18 }, | |
| 19 "permissions": [ | |
| 20 "chromeosInfoPrivate", | |
| 21 "unlimitedStorage", | |
| 22 "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.
| |
| 23 "http://storage.googleapis.com/*", | |
| 24 "https://www-googleapis-test.sandbox.google.com/*", | |
| 25 "https://www.googleapis.com/*" | |
| 26 ] | |
| 27 } | |
| OLD | NEW |