Clean Twitter

Remove all the annoying clutter from your Twitter.

What is Clean Twitter?

Clean Twitter is a Chrome extension developed by dhaiwatpandya, and its main feature is "Remove all the annoying clutter from your Twitter.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Clean Twitter Extension CRX File

Download Clean Twitter 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

                        Enhance your Twitter experience by removing some of the clutter.

Currently supported features:

1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc)
2) No metrics/numbers (Likes, RTs, replies, followers)

You can turn any of the features on and off at any time.

This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.                    

Extension Basic Information

Name Clean Twitter Clean Twitter
ID ibcjnfhpdjinbcmojnmpnokcgfljiebb
Official URL https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb
Description Remove all the annoying clutter from your Twitter.
File Size 98.75 KB
Installation Count 306
Current Version 0.3.0
Last Updated 2021-02-26
Publish Date 2021-02-16
Rating 4.00/5 Total 4 Ratings
Developer dhaiwatpandya
Email [email protected]
Payment Type free
Extension Website https://github.com/Dhaiwat10/clean-twitter
Help Page URL https://github.com/Dhaiwat10/clean-twitter/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clean Twitter",
    "description": "Remove all the annoying clutter from your Twitter.",
    "version": "0.3.0",
    "icons": {
        "16": "icon.png",
        "32": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js",
                "js\/popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Clean Twitter",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}