Cleaner Twitter

Make Twitter UI cleaner by removing annoying pieces.

What is Cleaner Twitter?

Cleaner Twitter is a Chrome extension developed by Kenny_1291, and its main feature is "Make Twitter UI cleaner by removing annoying pieces.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Cleaner Twitter Extension CRX File

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

                        With this extension you can hide annoying Twitter UI pieces.

*FEATURES*
- Predefined rules
- Modify and add custom CSS rules
- Predefined rules updates (no extension update required)


Source code: https://github.com/Kenny1291/cleaner-twitter                    

Extension Basic Information

Name Cleaner Twitter Cleaner Twitter
ID iplodopmopkmkpblangcjomcdfiidneo
Official URL https://chromewebstore.google.com/detail/cleaner-twitter/iplodopmopkmkpblangcjomcdfiidneo
Description Make Twitter UI cleaner by removing annoying pieces.
File Size 197 KB
Installation Count 27
Current Version 0.3.2
Last Updated 2024-02-05
Publish Date 2023-05-01
Developer Kenny_1291
Email [email protected]
Payment Type free
Extension Website https://github.com/Kenny1291/cleaner-twitter
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cleaner Twitter",
    "description": "Make Twitter UI cleaner by removing annoying pieces.",
    "version": "0.3.2",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "19": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "background": {
        "service_worker": "service_workers\/background.js",
        "type": "module"
    },
    "options_page": "options\/options.html",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "utils.js"
            ]
        }
    ]
}