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

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

Issue 23548023: Add a new component app Guide to Chrome (code name GeniusApp) to replace HelpApp. Add a command lin… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 months 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698