Shadowban Scanner
A browser extension that detects shadowbans on Twitter.
Shadowban Scanner란 무엇입니까?
Shadowban Scanner은(는) https://roboin.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that detects shadowbans on Twitter."입니다.
확장 프로그램 스크린샷
Shadowban Scanner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
## Features - Detects shadowbans and sensitive flags per account - Detects sensitive flags for profile media (icon and header image) - Detects countries that block accounts for legal reasons - Detects sensitive flags per tweet - Detects age restrictions on tweets - Adds buttons to show hidden tweets ## Accuracy When it comes to detecting shadowbans on an account level, like many other tools, there can be instances of false positives and false negatives. However, when it comes to detecting sensitive flags and age restrictions on a tweet level, it can be almost perfectly accurate. Therefore, it is recommended to use Shadowban Scanner to continuously monitor the status of your account and tweets, while also utilizing other tools alongside it. ## Privacy Policy As a rule, this extension performs all processing on the user's computer. No data is transmitted to an external server. It also does not access Twitter's internal API by obtaining the user's credentials without permission, as is the case with some extensions. Web pages not bundled in this extension are subject to their own terms of use and privacy policies. ## License This extension is released under the MIT License.
확장 프로그램 기본 정보
이름 | Shadowban Scanner |
ID | enlganfikppbjhabhkkilafmkhifadjd |
공식 URL | https://chromewebstore.google.com/detail/shadowban-scanner/enlganfikppbjhabhkkilafmkhifadjd |
설명 | A browser extension that detects shadowbans on Twitter. |
파일 크기 | 127 KB |
설치 횟수 | 6,433 |
현재 버전 | 3.1.2 |
최근 업데이트 | 2024-02-06 |
출시 날짜 | 2023-06-09 |
평점 | 4.22/5 총 9 개의 평점 |
개발자 | https://roboin.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://roboin.io/shadowban-scanner/en/ |
도움말 페이지 URL | https://github.com/Robot-Inventor/shadowban-scanner |
개인정보 보호 정책 페이지 URL | https://github.com/Robot-Inventor/shadowban-scanner |
지원되는 언어 | en,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shadowban Scanner", "short_name": "Shadowban Scanner", "version": "3.1.2", "description": "__MSG_manifest_description__", "icons": { "16": "dist\/image\/icon16.png", "48": "dist\/image\/icon48.png", "128": "dist\/image\/icon128.png" }, "host_permissions": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ], "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ], "js": [ "dist\/js\/contentScript.js" ], "css": [ "dist\/css\/style.css" ] } ], "background": { "service_worker": "dist\/js\/background.js" }, "web_accessible_resources": [ { "resources": [ "dist\/js\/pageScript.js", "dist\/image\/*" ], "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ] } ], "default_locale": "en", "action": { "default_icon": { "16": "dist\/image\/icon16.png", "48": "dist\/image\/icon48.png", "128": "dist\/image\/icon128.png" }, "default_popup": "dist\/html\/browserAction.html", "default_title": "Shadowban Scanner" }, "browser_specific_settings": { "gecko": { "id": "{8fee6fa8-6d95-4b9e-9c51-324c207fabff}" }, "gecko_android": [] } } |