Easy Login for Interactive Brokers

Base Level Extension

什麼是Easy Login for Interactive Brokers?

Easy Login for Interactive Brokers是由ivan.chan719開發的Chrome擴展程式,該擴展的主要功能是“Base Level Extension”。

擴展截圖

screenshot
screenshot

下載Easy Login for Interactive Brokers擴展crx文件

下載Easy Login for Interactive Brokers擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Easy Login for Interactive Brokers Easy Login for Interactive Brokers
ID gchmadocpomnpglpannjoliodjahldlj
官方網址 https://chromewebstore.google.com/detail/easy-login-for-interactiv/gchmadocpomnpglpannjoliodjahldlj
簡介 Base Level Extension
檔案大小 13.51 MB
安裝次數 156
目前版本 2.1
更新時間 2018-09-29
上架時間 2018-09-29
評分 4.50/5 共 10 次評分
開發者 ivan.chan719
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        ]
    }
}