Easy Login for Interactive Brokers

Base Level Extension

Easy Login for Interactive Brokers क्या है?

Easy Login for Interactive Brokers ivan.chan719 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Base Level Extension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Easy Login for Interactive Brokers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
        ]
    }
}