VTOP Beta Auto Captcha
Generates auto captcha for the new vtop site
Hvad er VTOP Beta Auto Captcha?
VTOP Beta Auto Captcha er en Chrome-udvidelse udviklet af kesh.howzat, og dens hovedfunktion er "Generates auto captcha for the new vtop site".
Download VTOP Beta Auto Captcha-udvidelses-CRX-fil
Download VTOP Beta Auto Captcha-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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].
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | chkhokedgdiifpnjpfmhbnnoicdecjha |
Officiel URL | https://chrome.google.com/webstore/detail/vtop-beta-auto-captcha/chkhokedgdiifpnjpfmhbnnoicdecjha |
Beskrivelse | Generates auto captcha for the new vtop site |
Filstørrelse | 41.69 KB |
Antal Installationer | 404 |
Nuværende Version | 1.0 |
Senest Opdateret | 2017-07-22 |
Udgivelsesdato | 2017-07-22 |
Bedømmelse | 2.60/5 Samlet 10 Bedømmelser |
Udvikler | kesh.howzat |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |