Blue Tick
"Blue Tick" restores authentic blue ticks and distinguishes between actual verified account and paid subscribers.
Blue Tick란 무엇입니까?
Blue Tick은(는) Aman Gupta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 ""Blue Tick" restores authentic blue ticks and distinguishes between actual verified account and paid subscribers."입니다.
확장 프로그램 스크린샷
Blue Tick 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hours after launching this new feature, Twitter users are left in chaos and confusion. Thousands of fake verified accounts have impersonated prominent brands and personalities. Twitter has provided voice to the voiceless. It helped many of us locate an empty hospital bed or find crucial medicines during the second Covid wave. It is my tiny attempt to preserve the integrity of the platform.
확장 프로그램 기본 정보
이름 | Blue Tick |
ID | olfckcmcobffcnbelnfgbaiinanbmldp |
공식 URL | https://chromewebstore.google.com/detail/blue-tick/olfckcmcobffcnbelnfgbaiinanbmldp |
설명 | "Blue Tick" restores authentic blue ticks and distinguishes between actual verified account and paid subscribers. |
파일 크기 | 10.5 MB |
설치 횟수 | 134 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2022-11-17 |
출시 날짜 | 2022-11-15 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | Aman Gupta |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/amangupta25/blue-tick |
도움말 페이지 URL | https://github.com/amangupta25/blue-tick |
개인정보 보호 정책 페이지 URL | https://www.freeprivacypolicy.com/live/60d9ca28-2143-473b-b6a4-aeeaa2d0409e |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "homepage_url": "http:\/\/chrome.google.com\/webstore", "version": "0.0.2", "version_name": "0.0.2", "manifest_version": 3, "default_locale": "en", "minimum_chrome_version": "88", "permissions": [ "scripting", "activeTab", "storage" ], "icons": { "128": "assets\/img\/twitter-verified-badge.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "assets\/img\/twitter-verified-badge.png", "24": "assets\/img\/twitter-verified-badge.png", "32": "assets\/img\/twitter-verified-badge.png" }, "default_title": "__MSG_appName__" }, "web_accessible_resources": [ { "resources": [ "data\/*.json", "assets\/scripts\/turnOn.js", "assets\/scripts\/turnOff.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "host_permissions": [ "https:\/\/twitter.com\/*" ], "optional_host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ ".\/assets\/scripts\/content.js" ] } ] } |