VTOP Beta Auto Captcha

Generates auto captcha for the new vtop site

Cos'è VTOP Beta Auto Captcha?

VTOP Beta Auto Captcha è un'estensione di Chrome sviluppata da kesh.howzat, e la sua funzione principale è "Generates auto captcha for the new vtop site".

Scarica il file CRX dell'estensione VTOP Beta Auto Captcha

Scarica i file di estensione VTOP Beta Auto Captcha in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This generates auto captcha for the vtop beta for VIT students for the new beta version of the Vtop website. For any queries send a mail to [email protected].                    

Informazioni di Base sull'Estensione

Nome VTOP Beta Auto Captcha VTOP Beta Auto Captcha
ID chkhokedgdiifpnjpfmhbnnoicdecjha
URL Ufficiale https://chrome.google.com/webstore/detail/vtop-beta-auto-captcha/chkhokedgdiifpnjpfmhbnnoicdecjha
Descrizione Generates auto captcha for the new vtop site
Dimensione del File 41.69 KB
Conteggio Installazioni 404
Versione Corrente 1.0
Ultimo Aggiornamento 2017-07-22
Data di Pubblicazione 2017-07-22
Valutazione 2.60/5 Totale 10 Valutazioni
Sviluppatore kesh.howzat
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VTOP Beta Auto Captcha",
    "description": "Generates auto captcha for the new vtop site",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "64": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vtopbeta.vit.ac.in\/vtop\/*"
            ],
            "js": [
                "route.js"
            ]
        }
    ]
}