Twitter Timeline Eradicator
This extension removes timelines from twitter, to help you avoid mindless consumption.
什麼是Twitter Timeline Eradicator?
Twitter Timeline Eradicator是由Bryan開發的Chrome擴展程式,該擴展的主要功能是“This extension removes timelines from twitter, to help you avoid mindless consumption.”。
擴展截圖
下載Twitter Timeline Eradicator擴展crx文件
下載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 |
官方網址 | 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" ] } |