Clean Twitter
Remove all the annoying clutter from your Twitter.
Clean Twitter là gì?
Clean Twitter là một tiện ích mở rộng Chrome được phát triển bởi dhaiwatpandya, và tính năng chính của nó là "Remove all the annoying clutter from your Twitter.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Clean Twitter
Tải xuống các tệp mở rộng Clean Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Enhance your Twitter experience by removing some of the clutter. Currently supported features: 1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc) 2) No metrics/numbers (Likes, RTs, replies, followers) You can turn any of the features on and off at any time. This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Clean Twitter |
ID | ibcjnfhpdjinbcmojnmpnokcgfljiebb |
URL Chính Thức | https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb |
Mô tả | Remove all the annoying clutter from your Twitter. |
Kích Thước Tệp | 98.75 KB |
Số Lần Cài Đặt | 306 |
Phiên Bản Hiện Tại | 0.3.0 |
Cập Nhật Lần Cuối | 2021-02-26 |
Ngày Phát Hành | 2021-02-16 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | dhaiwatpandya |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Dhaiwat10/clean-twitter |
URL Trang Trợ Giúp | https://github.com/Dhaiwat10/clean-twitter/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean Twitter", "description": "Remove all the annoying clutter from your Twitter.", "version": "0.3.0", "icons": { "16": "icon.png", "32": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery.js", "js\/content.js", "js\/popup.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_title": "Clean Twitter", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs" ] } |