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

Unified 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 side-by-side diff with in-line comments
Download patch
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/*"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698