Roundabout Douban

Skip account verification

Apa itu Roundabout Douban?

Roundabout Douban adalah ekstensi Chrome yang dikembangkan oleh getdrunkandcode, dan fitur utamanya adalah "Skip account verification".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Roundabout Douban

Unduh file ekstensi Roundabout Douban dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

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

Informasi Dasar Ekstensi

Nama Roundabout Douban Roundabout Douban
ID gepbfljgfnliohklcbfkcgijcgfobgdf
URL Resmi https://chrome.google.com/webstore/detail/roundabout-douban/gepbfljgfnliohklcbfkcgijcgfobgdf
Deskripsi Skip account verification
Ukuran File 41.9 KB
Jumlah Instalasi 107
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2019-03-23
Tanggal Publikasi 2019-03-23
Penilaian 5.00/5 Total 2 Penilaian
Pengembang getdrunkandcode
Tipe Pembayaran free
Bahasa yang Didukung 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
}