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은(는) mxxwwl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically blocks users verified by Twitter Blue."입니다.

확장 프로그램 스크린샷

screenshot

Block The Blue - Twitter Verified Blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}