Disable Twitter Feed

Removes the timeline on Twitter's homepage.

What is Disable Twitter Feed?

Disable Twitter Feed is a Chrome extension developed by https://lukasrosenstock.net, and its main feature is "Removes the timeline on Twitter's homepage.".

Extension Screenshots

screenshot

Download Disable Twitter Feed Extension CRX File

Download Disable Twitter Feed 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

                        The Twitter timeline can be a rabbit-hole that hurts your productivity. Disable Twitter Feed is a minimalist, single-purpose add-on without any configuration options. It does one thing: removing the timeline on Twitter's homepage. All other functionality (e.g., private messages, opening individual profiles) remains intact.                    

Extension Basic Information

Name Disable Twitter Feed Disable Twitter Feed
ID oppnglmfkpdfodnepgilhcagbbdojekd
Official URL https://chromewebstore.google.com/detail/disable-twitter-feed/oppnglmfkpdfodnepgilhcagbbdojekd
Description Removes the timeline on Twitter's homepage.
File Size 8 KB
Installation Count 388
Current Version 1.0
Last Updated 2020-12-04
Publish Date 2020-12-03
Rating 5.00/5 Total 2 Ratings
Developer https://lukasrosenstock.net
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Twitter Feed",
    "version": "1.0",
    "description": "Removes the timeline on Twitter's homepage.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "disablefeed.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "icon.png",
        "96": "[email protected]"
    }
}