Jaccount Captcha

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

Qu'est-ce que Jaccount Captcha ?

Jaccount Captcha est une extension Chrome développée par SeayoungZhang, et sa fonction principale est "This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Jaccount Captcha

Téléchargez les fichiers d'extension Jaccount Captcha au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Jaccount Captcha Jaccount Captcha
ID jkflfhcfedefddihcbbidpokhphmjfkm
URL Officiel https://chrome.google.com/webstore/detail/jaccount-captcha/jkflfhcfedefddihcbbidpokhphmjfkm
Description This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung
Taille du Fichier 2.41 MB
Nombre d'Installations 192
Version Actuelle 2.1
Dernière Mise à Jour 2018-08-27
Date de Publication 2018-08-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur SeayoungZhang
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/seayoungzhang/jaccount-captcha-cnn
URL de la Page d'Aide https://github.com/seayoungzhang/jaccount-captcha-cnn
Langues Prises en Charge 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"
            ]
        }
    ]
}