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
官方網址 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
}