Twitter Timeline Eradicator
This extension removes timelines from twitter, to help you avoid mindless consumption.
Twitter Timeline Eradicatorคืออะไร?
Twitter Timeline Eradicator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bryan และคุณลักษณะหลักของมันคือ "This extension removes timelines from twitter, to help you avoid mindless consumption."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Timeline Eradicator
ดาวน์โหลดไฟล์ส่วนขยาย Twitter Timeline Eradicator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitter Timeline Eradicator |
ID | olmgbkhifmcfpaagiaakihcgobdkmchl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl |
คำอธิบาย | This extension removes timelines from twitter, to help you avoid mindless consumption. |
ขนาดไฟล์ | 40.07 KB |
จำนวนการติดตั้ง | 1,073 |
เวอร์ชันปัจจุบัน | 2.0.1 |
อัปเดตครั้งล่าสุด | 2020-07-20 |
วันที่เผยแพร่ | 2020-07-03 |
คะแนน | 4.42/5 รวมทั้งหมด 19 คะแนน |
ผู้พัฒนา | Bryan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/bryanbraun/twitter-timeline-eradicator |
URL หน้าช่วยเหลือ | https://github.com/bryanbraun/twitter-timeline-eradicator/issues |
ภาษาที่รองรับ | 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" ] } |