VTOP Beta Auto Captcha
Generates auto captcha for the new vtop site
Co to jest VTOP Beta Auto Captcha?
VTOP Beta Auto Captcha to rozszerzenie Chrome opracowane przez kesh.howzat, a jego główną funkcją jest „Generates auto captcha for the new vtop site”.
Pobierz plik CRX rozszerzenia VTOP Beta Auto Captcha
Pobierz pliki rozszerzeń VTOP Beta Auto Captcha w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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].
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | chkhokedgdiifpnjpfmhbnnoicdecjha |
Oficjalny URL | https://chrome.google.com/webstore/detail/vtop-beta-auto-captcha/chkhokedgdiifpnjpfmhbnnoicdecjha |
Opis | Generates auto captcha for the new vtop site |
Rozmiar pliku | 41.69 KB |
Liczba instalacji | 404 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2017-07-22 |
Data Publikacji | 2017-07-22 |
Ocena | 2.60/5 Łącznie 10 Oceny |
Deweloper | kesh.howzat |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |