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

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

Issue 19749007: Processing timefences from the server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: arv@ notes Created 7 years, 5 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.0.1", 4 "version": "1.2.0.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 "alarms", 8 "alarms",
9 "location", 9 "location",
10 "metricsPrivate", 10 "metricsPrivate",
11 "notifications", 11 "notifications",
12 "preferencesPrivate", 12 "preferencesPrivate",
13 "storage", 13 "storage",
14 "tabs", 14 "tabs",
15 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know 15 // TODO(vadimt): Replace <all_urls> with real URL patterns once we know
16 // them. 16 // them.
17 "<all_urls>", 17 "<all_urls>",
18 "identity" 18 "identity"
19 ], 19 ],
20 "manifest_version": 2, 20 "manifest_version": 2,
21 "background": { 21 "background": {
22 "scripts": ["utility.js", "background.js"], 22 "scripts": ["utility.js", "cards.js", "background.js"],
23 "persistent": false 23 "persistent": false
24 }, 24 },
25 // TODO(vadimt): Remove using chrome.omnibox. 25 // TODO(vadimt): Remove using chrome.omnibox.
26 "omnibox": { "keyword" : "gn_url" }, 26 "omnibox": { "keyword" : "gn_url" },
27 "oauth2": { 27 "oauth2": {
28 "auto_approve": true, 28 "auto_approve": true,
29 "scopes": ["https://www.googleapis.com/auth/googlenow"] 29 "scopes": ["https://www.googleapis.com/auth/googlenow"]
30 } 30 }
31 } 31 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/google_now/cards_unittest.gtestjs ('k') | chrome/browser/resources/google_now/utility.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698