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

Unified Diff: chrome/browser/resources/google_now/manifest.json

Issue 11967029: Initial implementation of Google Now Notifications integration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/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..523214b9143d378946251b19162eb2d023568bc8
--- /dev/null
+++ b/chrome/browser/resources/google_now/manifest.json
@@ -0,0 +1,18 @@
+{
+ //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",
+ "<all_urls>",
+ "experimental",
+ "alarms"
+ ],
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"],
+ "persistent": false
+ }
+ }

Powered by Google App Engine
This is Rietveld 408576698