Easy Login for Interactive Brokers
Base Level Extension
Cos'è Easy Login for Interactive Brokers?
Easy Login for Interactive Brokers è un'estensione di Chrome sviluppata da ivan.chan719, e la sua funzione principale è "Base Level Extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Easy Login for Interactive Brokers
Scarica i file di estensione Easy Login for Interactive Brokers in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension contains a neural network trained to recognise digits that appear when you log into your Interactive Brokers account. It automatically fetches the corresponding codes from your security card, saving you from having to find your card and extract the codes yourself. The entire process is run locally, meaning that the neural network is embedded into the extension itself and not hosted on a server somewhere else. The card details will be saved in the chrome local storage and can't be accessed by anyone else. It works on all urls that are on the interactivebrokers.com host. If you are viewing a url from another host the extension will become inactive. Usage: 1) Click on the "Card" button on the extension to fill out your card details (the next update will include a feature that automatically fills out the details from photos of your card) 2) Login to either web trader or account management at Interactive Brokers 3) When the index number image appears, click "Run" on the extension. The digits and codes will then appear on the pop-up of the extension Full code: https://github.com/ivan-chan123/easy-login-for-interactive-brokers
Informazioni di Base sull'Estensione
Nome | Easy Login for Interactive Brokers |
ID | gchmadocpomnpglpannjoliodjahldlj |
URL Ufficiale | https://chromewebstore.google.com/detail/easy-login-for-interactiv/gchmadocpomnpglpannjoliodjahldlj |
Descrizione | Base Level Extension |
Dimensione del File | 13.51 MB |
Conteggio Installazioni | 156 |
Versione Corrente | 2.1 |
Ultimo Aggiornamento | 2018-09-29 |
Data di Pubblicazione | 2018-09-29 |
Valutazione | 4.50/5 Totale 10 Valutazioni |
Sviluppatore | ivan.chan719 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Easy Login for Interactive Brokers", "description": "Base Level Extension", "manifest_version": 2, "version": "2.1", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_icon": "IB.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.interactivebrokers.com\/*" ], "js": [ "popup.js" ] } ], "background": { "scripts": [ "background.js" ] } } |