Twitter Cleaner

Removes annoying twitter boxes

What is Twitter Cleaner?

Twitter Cleaner is a Chrome extension developed by https://cavar.net, and its main feature is "Removes annoying twitter boxes".

Extension Screenshots

screenshot

Download Twitter Cleaner Extension CRX File

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

                        Removes trending, who to follow and footer boxes.
Report any issues here https://github.com/Palethorn/twitter_cleaner/issues                    

Extension Basic Information

Name Twitter Cleaner Twitter Cleaner
ID oocpmdgjlccdinophpbbkmfdjooflfac
Official URL https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac
Description Removes annoying twitter boxes
File Size 92.48 KB
Installation Count 50
Current Version 2.0.0
Last Updated 2019-11-21
Publish Date 2019-11-21
Rating 5.00/5 Total 1 Ratings
Developer https://cavar.net
Email [email protected]
Payment Type free
Extension Website https://github.com/Palethorn/twitter_cleaner
Help Page URL https://github.com/Palethorn/twitter_cleaner/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Cleaner",
    "version": "2.0.0",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "description": "Removes annoying twitter boxes",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}