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

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

Issue 799923007: Enable 3rd party support for Security Keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 "name": "CryptoTokenExtension", 2 "name": "CryptoTokenExtension",
3 "description": "CryptoToken Component Extension", 3 "description": "CryptoToken Component Extension",
4 "version": "0.9.6", 4 "version": "0.9.10",
5 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq7zRobvA+AVlvNqkHSSVhh1sEW sHSqz4oR/XptkDe/Cz3+gW9ZGumZ20NCHjaac8j1iiesdigp8B1LJsd/2WWv2Dbnto4f8GrQ5MVphKyQ 9WJHwejEHN2K4vzrTcwaXqv5BSTXwxlxS/mXCmXskTfryKTLuYrcHEWK8fCHb+0gvr8b/kvsi75A1aMm b6nUnFJvETmCkOCPNX5CHTdy634Ts/x0fLhRuPlahk63rdf7agxQv5viVjQFk+tbgv6aa9kdSd11Js/R Z9yZjrFgHOBWgP4jTBqud4+HUglrzu8qynFipyNRLCZsaxhm+NItTyNgesxLdxZcwOz56KD1Q4IQIDAQ AB", 5 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq7zRobvA+AVlvNqkHSSVhh1sEW sHSqz4oR/XptkDe/Cz3+gW9ZGumZ20NCHjaac8j1iiesdigp8B1LJsd/2WWv2Dbnto4f8GrQ5MVphKyQ 9WJHwejEHN2K4vzrTcwaXqv5BSTXwxlxS/mXCmXskTfryKTLuYrcHEWK8fCHb+0gvr8b/kvsi75A1aMm b6nUnFJvETmCkOCPNX5CHTdy634Ts/x0fLhRuPlahk63rdf7agxQv5viVjQFk+tbgv6aa9kdSd11Js/R Z9yZjrFgHOBWgP4jTBqud4+HUglrzu8qynFipyNRLCZsaxhm+NItTyNgesxLdxZcwOz56KD1Q4IQIDAQ AB",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "permissions": [ 7 "permissions": [
8 "cryptotokenPrivate", 8 "cryptotokenPrivate",
9 "hid", 9 "hid",
10 "usb", 10 "usb",
11 "cryptotokenPrivate",
xiyuan 2014/12/13 04:36:30 Isn't this listed on line 8 already?
Arnar Birgisson 2014/12/13 04:46:53 Done. Indeed, bad merge.
12 "externally_connectable.all_urls",
xiyuan 2014/12/13 04:36:30 This looks wrong. Line 27 looks the one needed.
juanlang 2014/12/13 04:42:39 They're both needed: this permission is required t
xiyuan 2014/12/13 04:46:09 Aha. You are right. Ignore my comment then. :p
Arnar Birgisson 2014/12/13 04:46:53 Acknowledged. We tested with only line 27 and it i
11 "u2fDevices", 13 "u2fDevices",
12 "https://www.gstatic.com/", 14 "https://*/*",
15 "http://*/*",
13 { 16 {
14 "usbDevices": [ 17 "usbDevices": [
15 { 18 {
16 "vendorId": 4176, 19 "vendorId": 4176,
17 "productId": 529 20 "productId": 529
18 } 21 }
19 ] 22 ]
20 } 23 }
21 ], 24 ],
22 "externally_connectable": { 25 "externally_connectable": {
23 "matches": [ 26 "matches": [
24 "https://login.corp.google.com/*", 27 "<all_urls>"
25 "https://accounts.google.com/*",
26 "https://myaccount.google.com/*",
27 "https://security.google.com/*"
28 ], 28 ],
29 "ids": [ 29 "ids": [
30 "fjajfjhkeibgmiggdfehjplbhmfkialk" 30 "fjajfjhkeibgmiggdfehjplbhmfkialk"
31 ], 31 ],
32 "accepts_tls_channel_id": true 32 "accepts_tls_channel_id": true
33 }, 33 },
34 "background": { 34 "background": {
35 "persistent": false, 35 "persistent": false,
36 "scripts": [ 36 "scripts": [
37 "util.js", 37 "util.js",
(...skipping 12 matching lines...) Expand all
50 "closeable.js", 50 "closeable.js",
51 "requesthelper.js", 51 "requesthelper.js",
52 "webrequestsender.js", 52 "webrequestsender.js",
53 "enroller.js", 53 "enroller.js",
54 "requestqueue.js", 54 "requestqueue.js",
55 "signer.js", 55 "signer.js",
56 "origincheck.js", 56 "origincheck.js",
57 "textfetcher.js", 57 "textfetcher.js",
58 "appid.js", 58 "appid.js",
59 "watchdog.js", 59 "watchdog.js",
60 "gstaticorigincheck.js", 60 "etld_names_list.js",
61 "googleapprovedorigins.js", 61 "etld.js",
62 "etldorigincheck.js",
63 "cryptotokenapprovedorigins.js",
62 "gnubbydevice.js", 64 "gnubbydevice.js",
63 "hidgnubbydevice.js", 65 "hidgnubbydevice.js",
64 "usbgnubbydevice.js", 66 "usbgnubbydevice.js",
65 "gnubbies.js", 67 "gnubbies.js",
66 "gnubby.js", 68 "gnubby.js",
67 "gnubby-u2f.js", 69 "gnubby-u2f.js",
68 "gnubbyfactory.js", 70 "gnubbyfactory.js",
69 "singlesigner.js", 71 "singlesigner.js",
70 "multiplesigner.js", 72 "multiplesigner.js",
71 "generichelper.js", 73 "generichelper.js",
72 "inherits.js", 74 "inherits.js",
73 "individualattest.js", 75 "individualattest.js",
74 "devicefactoryregistry.js", 76 "devicefactoryregistry.js",
75 "usbhelper.js", 77 "usbhelper.js",
76 "usbenrollhandler.js", 78 "usbenrollhandler.js",
77 "usbsignhandler.js", 79 "usbsignhandler.js",
78 "usbgnubbyfactory.js", 80 "usbgnubbyfactory.js",
79 "googlecorpindividualattest.js", 81 "googlecorpindividualattest.js",
80 "cryptotokenbackground.js" 82 "cryptotokenbackground.js"
81 ] 83 ]
82 } 84 }
83 } 85 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/cryptotoken/gstaticorigincheck.js ('k') | chrome/browser/resources/cryptotoken/singlesigner.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698