Twitter Timeline Eradicator
This extension removes timelines from twitter, to help you avoid mindless consumption.
Twitter Timeline Eradicator là gì?
Twitter Timeline Eradicator là một tiện ích mở rộng Chrome được phát triển bởi Bryan, và tính năng chính của nó là "This extension removes timelines from twitter, to help you avoid mindless consumption.".
Ả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 Twitter Timeline Eradicator
Tải xuống các tệp mở rộng Twitter Timeline Eradicator 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
It hides the most addictive parts of Twitter, like the main timeline, the Explore timeline, moments, and Trending. It shows the most useful parts of twitter, like notifications, user profiles, individual tweets, and DMs.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitter Timeline Eradicator |
ID | olmgbkhifmcfpaagiaakihcgobdkmchl |
URL Chính Thức | https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl |
Mô tả | This extension removes timelines from twitter, to help you avoid mindless consumption. |
Kích Thước Tệp | 40.07 KB |
Số Lần Cài Đặt | 1,073 |
Phiên Bản Hiện Tại | 2.0.1 |
Cập Nhật Lần Cuối | 2020-07-20 |
Ngày Phát Hành | 2020-07-03 |
Đánh Giá | 4.42/5 Tổng số 19 Đánh Giá |
Nhà Phát Triển | Bryan |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/bryanbraun/twitter-timeline-eradicator |
URL Trang Trợ Giúp | https://github.com/bryanbraun/twitter-timeline-eradicator/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Timeline Eradicator", "description": "This extension removes timelines from twitter, to help you avoid mindless consumption.", "version": "2.0.1", "permissions": [ "activeTab", "storage", "https:\/\/twitter.com\/" ], "browser_action": { "default_icon": "quiet-bird.png", "default_popup": "popup.html", "default_title": "Twitter Timeline Eradicator" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "clean.js" ], "css": [ "default.css" ] } ], "web_accessible_resources": [ "enable-main-timeline.css", "enable-trending.css" ] } |