VTOP Beta Auto Captcha
Generates auto captcha for the new vtop site
VTOP Beta Auto Captchaคืออะไร?
VTOP Beta Auto Captcha เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kesh.howzat และคุณลักษณะหลักของมันคือ "Generates auto captcha for the new vtop site"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VTOP Beta Auto Captcha
ดาวน์โหลดไฟล์ส่วนขยาย VTOP Beta Auto Captcha ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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].
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | chkhokedgdiifpnjpfmhbnnoicdecjha |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/vtop-beta-auto-captcha/chkhokedgdiifpnjpfmhbnnoicdecjha |
คำอธิบาย | Generates auto captcha for the new vtop site |
ขนาดไฟล์ | 41.69 KB |
จำนวนการติดตั้ง | 404 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2017-07-22 |
วันที่เผยแพร่ | 2017-07-22 |
คะแนน | 2.60/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | kesh.howzat |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } ] } |