Roundabout Douban

Skip account verification

Wat is Roundabout Douban?

Roundabout Douban is een Chrome-extensie ontwikkeld door getdrunkandcode, en de belangrijkste functie is "Skip account verification".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Roundabout Douban

Download Roundabout Douban-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

Basisinformatie over de Extensie

Naam Roundabout Douban Roundabout Douban
ID gepbfljgfnliohklcbfkcgijcgfobgdf
Officiële URL https://chrome.google.com/webstore/detail/roundabout-douban/gepbfljgfnliohklcbfkcgijcgfobgdf
Beschrijving Skip account verification
Bestandsgrootte 41.9 KB
Aantal Installaties 107
Huidige Versie 0.1.0
Laatst Bijgewerkt 2019-03-23
Publicatiedatum 2019-03-23
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar getdrunkandcode
Betalingswijze free
Ondersteunde Talen 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
}