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

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

Issue 12316075: Preventing race conditions in Google Now extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: arv@ comments. 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.0", 4 "version": "1.0",
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 ], 16 ],
17 "manifest_version": 2, 17 "manifest_version": 2,
18 "background": { 18 "background": {
19 "scripts": ["background.js"], 19 "scripts": ["utility.js", "background.js"],
20 "persistent": false 20 "persistent": false
21 } 21 }
22 } 22 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/google_now/background.js ('k') | chrome/browser/resources/google_now/utility.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698