Roundabout Douban

Skip account verification

Was ist Roundabout Douban?

Roundabout Douban ist eine Chrome-Erweiterung, die von getdrunkandcode entwickelt wurde, und ihr Hauptmerkmal ist "Skip account verification".

Erweiterungsscreenshots

screenshot

Roundabout Douban-Erweiterungs-CRX-Datei herunterladen

Laden Sie Roundabout Douban-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

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

Grundlegende Informationen zur Erweiterung

Name Roundabout Douban Roundabout Douban
ID gepbfljgfnliohklcbfkcgijcgfobgdf
Offizielle URL https://chrome.google.com/webstore/detail/roundabout-douban/gepbfljgfnliohklcbfkcgijcgfobgdf
Beschreibung Skip account verification
Dateigröße 41.9 KB
Installationsanzahl 107
Aktuelle Version 0.1.0
Letztes Update 2019-03-23
Veröffentlichungsdatum 2019-03-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler getdrunkandcode
Zahlungsart free
Unterstützte Sprachen 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
}