Roundabout Douban

Skip account verification

什么是Roundabout Douban?

Roundabout Douban是由getdrunkandcode开发的Chrome扩展程序,该扩展的主要功能是“Skip account verification”。

扩展截图

screenshot

下载Roundabout Douban扩展crx文件

下载Roundabout Douban扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        3/23/2019 update
Update the code to accommodate the new change from Douban.

=============
* Skip phone number verification
* Disable auto complete on reply box                    

扩展基本信息

名称 Roundabout Douban Roundabout Douban
ID gepbfljgfnliohklcbfkcgijcgfobgdf
官方URL https://chrome.google.com/webstore/detail/roundabout-douban/gepbfljgfnliohklcbfkcgijcgfobgdf
简介 Skip account verification
文件大小 41.9 KB
安装次数 107
当前版本 0.1.0
更新时间 2019-03-23
上架时间 2019-03-23
评分 5.00/5 共2次评分
开发者 getdrunkandcode
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Roundabout Douban",
    "description": "Skip account verification",
    "version": "0.1.0",
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "declarativeContent",
        "https:\/\/www.douban.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.douban.com\/*"
            ],
            "js": [
                "jquery-v3.1.0.min.js",
                "skipVerification.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_title": "Roundabout Douban",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}