Twitter Blue Blocker
An extension that (tries to) block twitter blue users as they load onto your TL
Twitter Blue Blocker란 무엇입니까?
Twitter Blue Blocker은(는) rlyshw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that (tries to) block twitter blue users as they load onto your TL"입니다.
확장 프로그램 스크린샷
Twitter Blue Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } |