PureTwitter
Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience!
PureTwitter란 무엇입니까?
PureTwitter은(는) Lee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience!"입니다.
확장 프로그램 스크린샷
PureTwitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A browser extension that filters out tweets and Twitter accounts containing pornography, violence, or advertisements automatically. With this extension, you can now stay away from junk tweets and enjoy a cleaner and safer Twitter experience. Say goodbye to inappropriate content and hello to a more pleasant social media experience. Get our browser extension now and start enjoying a better Twitter!
확장 프로그램 기본 정보
이름 | PureTwitter |
ID | nflidllhiamnebgbgoemadhhfdpbbpbi |
공식 URL | https://chromewebstore.google.com/detail/puretwitter/nflidllhiamnebgbgoemadhhfdpbbpbi |
설명 | Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience! |
파일 크기 | 371 KB |
설치 횟수 | 4,145 |
현재 버전 | 1.0.14 |
최근 업데이트 | 2023-12-21 |
출시 날짜 | 2023-07-07 |
평점 | 4.63/5 총 27 개의 평점 |
개발자 | Lee |
이메일 | [email protected] |
결제 유형 | in_app |
개인정보 보호 정책 페이지 URL | https://www.privacypolicies.com/live/1f7656aa-e3fa-4948-8033-2112e39a6734 |
지원되는 언어 | en-US |
manifest.json | |
{ "manifest_version": 3, "name": "PureTwitter", "description": "Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience\uff01", "version": "1.0.14", "background": { "service_worker": "\/background.js" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "css": [ "style.css" ], "js": [ "\/content.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "tabs" ], "host_permissions": [ "*:\/\/*.twitter.com\/*", "*:\/\/puretwitter.ikeyly.cn\/*" ], "web_accessible_resources": [ { "resources": [ "\/injected.js" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx" } |