Twitter Sanitizer
Improve your Twitter experience by hiding different features.
Twitter Sanitizer란 무엇입니까?
Twitter Sanitizer은(는) Hristiyan Dodov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve your Twitter experience by hiding different features."입니다.
확장 프로그램 스크린샷
Twitter Sanitizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to hide different parts of Twitter. The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet. Here's the full list of toggles: - Sidebars - Profile counters - Profile card stats - Post RTs and likes - Feed post actions - Followers you know - Notification faces
확장 프로그램 기본 정보
이름 | Twitter Sanitizer |
ID | amdinnnilgkcpgohiijcejpnhgngmfdl |
공식 URL | https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl |
설명 | Improve your Twitter experience by hiding different features. |
파일 크기 | 29.21 KB |
설치 횟수 | 176 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-06-26 |
출시 날짜 | 2017-06-25 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | Hristiyan Dodov |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Sanitizer", "version": "1.1", "author": "Hristiyan Dodov", "description": "Improve your Twitter experience by hiding different features.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "js": [ "hider.js" ], "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ] } ] } |