Roundabout Douban

Skip account verification

Cos'è Roundabout Douban?

Roundabout Douban è un'estensione di Chrome sviluppata da getdrunkandcode, e la sua funzione principale è "Skip account verification".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Roundabout Douban

Scarica i file di estensione Roundabout Douban in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

Informazioni di Base sull'Estensione

Nome Roundabout Douban Roundabout Douban
ID gepbfljgfnliohklcbfkcgijcgfobgdf
URL Ufficiale https://chrome.google.com/webstore/detail/roundabout-douban/gepbfljgfnliohklcbfkcgijcgfobgdf
Descrizione Skip account verification
Dimensione del File 41.9 KB
Conteggio Installazioni 107
Versione Corrente 0.1.0
Ultimo Aggiornamento 2019-03-23
Data di Pubblicazione 2019-03-23
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore getdrunkandcode
Tipo di Pagamento free
Lingue Supportate 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
}