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

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

Issue 14743007: Retries with exponential backoff for dismissals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: skare@ comments Created 7 years, 7 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.2", 4 "version": "1.3",
rgustafson 2013/05/14 01:25:17 I suggest the lower parts of version 1.2.0.X or 1.
vadimt 2013/05/14 18:47:50 Done.
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 "location", 8 "location",
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 "metricsPrivate"
17 ], 17 ],
18 "manifest_version": 2, 18 "manifest_version": 2,
19 "background": { 19 "background": {
20 "scripts": ["utility.js", "background.js"], 20 "scripts": ["utility.js", "background.js"],
21 "persistent": false 21 "persistent": false
22 } 22 }
23 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698