Jaccount Captcha

This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung

Jaccount Captchaとは何ですか?

Jaccount CaptchaはSeayoungZhangによって開発されたChromeの拡張機能で、その主な機能は「This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung」です。

拡張機能のスクリーンショット

screenshot

Jaccount Captcha拡張機能のCRXファイルをダウンロード

Jaccount Captcha拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is an SJTU Jaccount captcha recognizing plugin for Chrome and Chromium browser developed by Siyang Zhang. It can save your Jaccount username and password and automatically fill in the captcha for you.

Developed with JavaScript and an amazing machine learning project by Andrej Karpathy: http://cs.stanford.edu/people/karpathy/convnetjs

Fork me on GitHub: https://github.com/seayoungzhang                    

拡張機能の基本情報

名前 Jaccount Captcha Jaccount Captcha
ID jkflfhcfedefddihcbbidpokhphmjfkm
公式URL https://chrome.google.com/webstore/detail/jaccount-captcha/jkflfhcfedefddihcbbidpokhphmjfkm
説明 This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung
ファイルサイズ 2.41 MB
インストール数 192
現在のバージョン 2.1
最終更新日 2018-08-27
公開日 2018-08-27
評価 5.00/5 合計 1 レビュー
開発者 SeayoungZhang
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/seayoungzhang/jaccount-captcha-cnn
ヘルプページのURL https://github.com/seayoungzhang/jaccount-captcha-cnn
対応言語 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jaccount Captcha",
    "version": "2.1",
    "description": "This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "main.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/jaccount.sjtu.edu.cn\/jaccount\/jalogin*"
            ],
            "js": [
                "convnet.js",
                "jquery-3.1.1.min.js",
                "model_1.js",
                "reco.js"
            ]
        }
    ]
}