Blue Check Hider
Identify and hide Twitter Blue users
Blue Check Hider란 무엇입니까?
Blue Check Hider은(는) https://gsajith.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Identify and hide Twitter Blue users"입니다.
확장 프로그램 스크린샷
Blue Check Hider 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will hide any users with a verified checkmark next to their name in the Twitter web UI. You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8.
확장 프로그램 기본 정보
이름 | Blue Check Hider |
ID | jhkoihkndkemdikaiafkiolgidghjfkl |
공식 URL | https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl |
설명 | Identify and hide Twitter Blue users |
파일 크기 | 497 KB |
설치 횟수 | 611 |
현재 버전 | 1.3 |
최근 업데이트 | 2023-05-05 |
출시 날짜 | 2023-04-21 |
평점 | 4.25/5 총 8 개의 평점 |
개발자 | https://gsajith.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/gsajith/blue-check-hider |
도움말 페이지 URL | https://github.com/gsajith/blue-check-hider |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Blue Check Hider", "version": "1.3", "description": "Identify and hide Twitter Blue users", "permissions": [ "activeTab", "storage" ], "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "js": [ ".\/static\/js\/content.js" ], "run_at": "document_end", "matches": [ "https:\/\/*.twitter.com\/*", "http:\/\/*.twitter.com\/*", "https:\/\/twitter.com\/*", "http:\/\/twitter.com\/*" ] } ], "background": { "service_worker": ".\/static\/js\/background.js", "type": "module" }, "action": { "default_popup": "index.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_title": "Blue Check Hider" } } |