Better Twitter
Make Twitter great again by removing unwanted contents from your timeline.
Better Twitter란 무엇입니까?
Better Twitter은(는) :Dream에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make Twitter great again by removing unwanted contents from your timeline."입니다.
확장 프로그램 스크린샷
Better Twitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The current settings allow you to hide the following elements: - view counts - tweet analytics - share buttons - ads & promoted tweets - promoted account (who to follow section only) - 'You might like' tweets Please note that in case of any new UI changes on Twitter, it may take 1-3 days for our extension to update. Feels free to leave feedback and suggestions, as I will be continue improving the extension and add more features later on. Changelog: v.10.3 (18/01/2023) - Added new option to hide 'You might like' tweets v1.0.2 (15/01/2023) - Updated to correspond to new UI changes - Added a new option to hide tweet analytics
확장 프로그램 기본 정보
이름 | Better Twitter |
ID | pdpffnhppidmpbfpflnclfkfgcgimblo |
공식 URL | https://chromewebstore.google.com/detail/better-twitter/pdpffnhppidmpbfpflnclfkfgcgimblo |
설명 | Make Twitter great again by removing unwanted contents from your timeline. |
파일 크기 | 30.66 KB |
설치 횟수 | 41 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2023-01-19 |
출시 날짜 | 2022-12-26 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | :Dream |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Better Twitter", "version": "1.0.3", "description": "Make Twitter great again by removing unwanted contents from your timeline.", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.js" ] } ], "action": { "default_title": "Better Twitter", "default_popup": "popup.html" }, "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |