VTOP Beta Auto Captcha

Generates auto captcha for the new vtop site

什么是VTOP Beta Auto Captcha?

VTOP Beta Auto Captcha是由kesh.howzat开发的Chrome扩展程序,该扩展的主要功能是“Generates auto captcha for the new vtop site”。

下载VTOP Beta Auto Captcha扩展crx文件

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

扩展基本信息

名称 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"
            ]
        }
    ]
}