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

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

Issue 13180002: Adding metrics for notification clicks and dismissals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 //chrome-extension://pmofbkohncoogjjhahejjfbppikbjigm 2 //chrome-extension://pmofbkohncoogjjhahejjfbppikbjigm
3 "name": "Google Now", 3 "name": "Google Now",
4 "version": "1.1", 4 "version": "1.1",
5 "description": "Integrates Google Now into Chrome.", 5 "description": "Integrates Google Now into Chrome.",
6 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDh/njCc/GTuP7uYix39uinhkX+7RyEoM aOQyoc065gsQ5b9cLpZToK78xgpsc9ThrpLVDOwqz6cGeLgIk+kPeRMQe07T+/mh3U5klegDx9pfr9T3 aiRNQnJYJv8niVs9aJ/sBSqxtHt2LlhEt9ajFXue7Q3LkzyTlXpxoEFH1keQIDAQAB", 6 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDh/njCc/GTuP7uYix39uinhkX+7RyEoM aOQyoc065gsQ5b9cLpZToK78xgpsc9ThrpLVDOwqz6cGeLgIk+kPeRMQe07T+/mh3U5klegDx9pfr9T3 aiRNQnJYJv8niVs9aJ/sBSqxtHt2LlhEt9ajFXue7Q3LkzyTlXpxoEFH1keQIDAQAB",
7 "permissions": [ 7 "permissions": [
8 "geolocation", 8 "geolocation",
9 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know 9 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know
10 // them. 10 // them.
11 "<all_urls>", 11 "<all_urls>",
12 "notifications", 12 "notifications",
13 "alarms", 13 "alarms",
14 "storage", 14 "storage",
15 "tabs" 15 "tabs",
16 "metricsPrivate"
16 ], 17 ],
17 "manifest_version": 2, 18 "manifest_version": 2,
18 "background": { 19 "background": {
19 "scripts": ["utility.js", "background.js"], 20 "scripts": ["metrics.js", "utility.js", "background.js"],
20 "persistent": false 21 "persistent": false
21 } 22 }
22 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698