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

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

Issue 21985002: Add Finch Checks to the State Machine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SMLog
Patch Set: Make Strings Const Created 7 years, 4 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
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 "optional_permissions": ["background"],
20 "manifest_version": 2, 21 "manifest_version": 2,
21 "background": { 22 "background": {
22 "scripts": ["utility.js", "cards.js", "background.js"], 23 "scripts": ["utility.js", "cards.js", "background.js"],
23 "persistent": false 24 "persistent": false
24 }, 25 },
25 // TODO(vadimt): Remove using chrome.omnibox. 26 // TODO(vadimt): Remove using chrome.omnibox.
26 "omnibox": { "keyword" : "gn_url" }, 27 "omnibox": { "keyword" : "gn_url" },
27 "oauth2": { 28 "oauth2": {
28 "auto_approve": true, 29 "auto_approve": true,
29 "scopes": ["https://www.googleapis.com/auth/googlenow"] 30 "scopes": ["https://www.googleapis.com/auth/googlenow"]
30 } 31 }
31 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698