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

Unified Diff: chrome/browser/resources/cryptotoken/manifest.json

Issue 249913002: FIDO U2F component extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with HEAD Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/cryptotoken/manifest.json
diff --git a/chrome/browser/resources/cryptotoken/manifest.json b/chrome/browser/resources/cryptotoken/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..0ae3b0b64714d412d77d8677e43452862dd546bd
--- /dev/null
+++ b/chrome/browser/resources/cryptotoken/manifest.json
@@ -0,0 +1,58 @@
+{
+ "name": "CryptoTokenExtension",
+ "version": "0.0.1",
+ "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq7zRobvA+AVlvNqkHSSVhh1sEWsHSqz4oR/XptkDe/Cz3+gW9ZGumZ20NCHjaac8j1iiesdigp8B1LJsd/2WWv2Dbnto4f8GrQ5MVphKyQ9WJHwejEHN2K4vzrTcwaXqv5BSTXwxlxS/mXCmXskTfryKTLuYrcHEWK8fCHb+0gvr8b/kvsi75A1aMmb6nUnFJvETmCkOCPNX5CHTdy634Ts/x0fLhRuPlahk63rdf7agxQv5viVjQFk+tbgv6aa9kdSd11Js/RZ9yZjrFgHOBWgP4jTBqud4+HUglrzu8qynFipyNRLCZsaxhm+NItTyNgesxLdxZcwOz56KD1Q4IQIDAQAB",
+ "manifest_version": 2,
+ "description": "CryptoToken Component Extension",
+ "permissions": [
+ "hid",
+ "usb",
+ {
+ "usbDevices": [
+ {"vendorId": 4176, "productId": 512},
+ {"vendorId": 4176, "productId": 529}
+ ]
+ },
+ "https://www.gstatic.com/"
+ ],
+ "externally_connectable": {
+ "matches": [
+ "https://accounts.google.com/*",
+ "https://security.google.com/*"
+ ],
+ "accepts_tls_channel_id": true
+ },
+ "background": {
+ "scripts": [
+ "util.js",
+ "b64.js",
+ "closeable.js",
+ "countdown.js",
+ "sha256.js",
+ "llgnubby.js",
+ "llhidgnubby.js",
+ "llusbgnubby.js",
+ "gnubbies.js",
+ "gnubby.js",
+ "gnubby-u2f.js",
+ "gnubbycodetypes.js",
+ "gnubbyfactory.js",
+ "gnubbymsgtypes.js",
+ "usbgnubbyfactory.js",
+ "devicestatuscodes.js",
+ "enroller.js",
+ "enrollhelper.js",
+ "usbenrollhelper.js",
+ "requestqueue.js",
+ "signer.js",
+ "signhelper.js",
+ "singlesigner.js",
+ "multiplesigner.js",
+ "usbsignhelper.js",
+ "webrequest.js",
+ "background.js"
+ ],
+ "persistent": false
+ }
+}
+
« no previous file with comments | « chrome/browser/resources/cryptotoken/llusbgnubby.js ('k') | chrome/browser/resources/cryptotoken/multiplesigner.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698