Twitter Timeline Eradicator
This extension removes timelines from twitter, to help you avoid mindless consumption.
What is Twitter Timeline Eradicator?
Twitter Timeline Eradicator is a Chrome extension developed by Bryan, and its main feature is "This extension removes timelines from twitter, to help you avoid mindless consumption.".
Extension Screenshots
Download Twitter Timeline Eradicator Extension CRX File
Download Twitter Timeline Eradicator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Twitter Timeline Eradicator |
ID | olmgbkhifmcfpaagiaakihcgobdkmchl |
Official URL | https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl |
Description | This extension removes timelines from twitter, to help you avoid mindless consumption. |
File Size | 40.07 KB |
Installation Count | 1,073 |
Current Version | 2.0.1 |
Last Updated | 2020-07-20 |
Publish Date | 2020-07-03 |
Rating | 4.42/5 Total 19 Ratings |
Developer | Bryan |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bryanbraun/twitter-timeline-eradicator |
Help Page URL | https://github.com/bryanbraun/twitter-timeline-eradicator/issues |
Supported Languages | 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" ] } |