diff options
author | brunobar79 <brunobar79@gmail.com> | 2018-08-05 14:43:02 +0800 |
---|---|---|
committer | brunobar79 <brunobar79@gmail.com> | 2018-08-05 14:43:02 +0800 |
commit | aaed44f1ec98e879ca08b1c73b2244a4f70438c4 (patch) | |
tree | aa76756d3d71d4005631d1109588f41ece637378 /app/manifest.json | |
parent | f2194e8482203988909da75e0442e66840c0bcab (diff) | |
download | tangerine-wallet-browser-aaed44f1ec98e879ca08b1c73b2244a4f70438c4.tar tangerine-wallet-browser-aaed44f1ec98e879ca08b1c73b2244a4f70438c4.tar.gz tangerine-wallet-browser-aaed44f1ec98e879ca08b1c73b2244a4f70438c4.tar.bz2 tangerine-wallet-browser-aaed44f1ec98e879ca08b1c73b2244a4f70438c4.tar.lz tangerine-wallet-browser-aaed44f1ec98e879ca08b1c73b2244a4f70438c4.tar.xz tangerine-wallet-browser-aaed44f1ec98e879ca08b1c73b2244a4f70438c4.tar.zst tangerine-wallet-browser-aaed44f1ec98e879ca08b1c73b2244a4f70438c4.zip |
trezor v5 working on firefox
Diffstat (limited to 'app/manifest.json')
-rw-r--r-- | app/manifest.json | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/app/manifest.json b/app/manifest.json index ed328f19f..3e217943e 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -28,7 +28,8 @@ "background": { "scripts": [ "chromereload.js", - "background.js" + "background.js", + "vendor/trezor/connect.js" ], "persistent": true }, @@ -52,6 +53,14 @@ ], "run_at": "document_start", "all_frames": true + }, + { + "matches": [ + "*://connect.trezor.io/5/popup.html" + ], + "js": [ + "vendor/trezor/content-script.js" + ] } ], "permissions": [ @@ -60,6 +69,7 @@ "clipboardWrite", "http://localhost:8545/", "https://*.infura.io/", + "*://connect.trezor.io/5/*", "activeTab", "webRequest", "*://*.eth/", |