Jaccount Captcha

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

Что такое Jaccount Captcha?

Jaccount Captcha - это расширение Chrome, разработанное SeayoungZhang, и его основная функция - "This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Jaccount Captcha

Скачайте файлы расширений 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
Электронная почта [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"
            ]
        }
    ]
}