Twitter Blue Blocker

An extension that (tries to) block twitter blue users as they load onto your TL

Twitter Blue Blockerคืออะไร?

Twitter Blue Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rlyshw และคุณลักษณะหลักของมันคือ "An extension that (tries to) block twitter blue users as they load onto your TL"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Blue Blocker

ดาวน์โหลดไฟล์ส่วนขยาย Twitter Blue Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Attempts to block blue checks for you as you scroll.
They'll still appear on the TL the first time since this doesn't update the UI, but they'll be added to your block list. 

if you'd like to send me $8 instead
venmo/paypal: rlyshw                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter Blue Blocker Twitter Blue Blocker
ID oenpfikjdpcjchnooafpppoaaailendg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-blue-blocker/oenpfikjdpcjchnooafpppoaaailendg
คำอธิบาย An extension that (tries to) block twitter blue users as they load onto your TL
ขนาดไฟล์ 26.25 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-04-25
วันที่เผยแพร่ 2023-04-25
ผู้พัฒนา rlyshw
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rlyshw/blue-check-blocker
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Blue Blocker",
    "description": "An extension that (tries to) block twitter blue users as they load onto your TL",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "world": "MAIN",
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "runAt": "document_start",
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/blue_block16.png",
            "32": "\/images\/blue_block32.png",
            "48": "\/images\/blue_block48.png",
            "128": "\/images\/blue_block128.png"
        }
    },
    "icons": {
        "16": "\/images\/blue_block16.png",
        "32": "\/images\/blue_block32.png",
        "48": "\/images\/blue_block48.png",
        "128": "\/images\/blue_block128.png"
    },
    "options_page": "options.html"
}