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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        ]
    }
}