Roundabout Douban

Skip account verification

Roundabout Doubanคืออะไร?

Roundabout Douban เป็นส่วนขยายของ Chrome ที่พัฒนาโดย getdrunkandcode และคุณลักษณะหลักของมันคือ "Skip account verification"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Roundabout Douban

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
}