Block The Blue - Twitter Verified Blocker

Automatically blocks users verified by Twitter Blue.

Block The Blue - Twitter Verified Blockerคืออะไร?

Block The Blue - Twitter Verified Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mxxwwl และคุณลักษณะหลักของมันคือ "Automatically blocks users verified by Twitter Blue."

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

screenshot

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

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

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

                        This extension will block any Twitter Blue Verified users on Twitter. It ignores organizational verifications, but will otherwise block ANY blue verified users. Inspired by the #BlockTheBlue campaign.

Elon has started giving blue verification to users and celebrities who did not buy it. Sadly, they will still be blocked because it is impossible to know who did and didn't pay. To get around this, the extension only blocks verified users once. If you unblock someone blocked by this extension, they will never be blocked by the extension again.

The extension will not block verified users you follow.
The extension will not block yellow checkmarks (organizations).
The extension will not block grey checkmarks (politicians).

I doubt the Twitter API would have ever allowed this for long, so this extension directly interacts with Twitter's DOM (Document Object Model). As such, you will briefly see the pop-ups of the blocking interface. 

This extension was made late at night, so sorry if there are errors or it goes haywire. Currently, it seems to be working as intended but time will tell.

The maximum accounts that can be blocked on Twitter is 125,000 so its doubtful you will hit that limit anytime soon.

Good luck, happy #BlockTheBlue -ing!                    

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

ชื่อ Block The Blue - Twitter Verified Blocker Block The Blue - Twitter Verified Blocker
ID ppoilcngmmnmdhgnejcnpohiabajclgn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/block-the-blue-twitter-ve/ppoilcngmmnmdhgnejcnpohiabajclgn
คำอธิบาย Automatically blocks users verified by Twitter Blue.
ขนาดไฟล์ 9.01 KB
จำนวนการติดตั้ง 2,638
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2023-05-02
วันที่เผยแพร่ 2023-04-27
คะแนน 2.81/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา mxxwwl
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Block The Blue - Twitter Verified Blocker",
    "version": "1.2",
    "description": "Automatically blocks users verified by Twitter Blue.",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_title": "Block The Blue - Twitter Verified Blocker"
    },
    "icons": {
        "48": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "blockTheBlue.js"
            ]
        }
    ]
}