VTOP Beta Auto Captcha

Generates auto captcha for the new vtop site

VTOP Beta Auto Captcha क्या है?

VTOP Beta Auto Captcha kesh.howzat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generates auto captcha for the new vtop site"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में VTOP Beta Auto Captcha एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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].                    

एक्सटेंशन की मूल जानकारी

नाम VTOP Beta Auto Captcha VTOP Beta Auto Captcha
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"
            ]
        }
    ]
}