remove-twitter-trends

Switches Twitter trending topics off

What is remove-twitter-trends?

remove-twitter-trends is a Chrome extension developed by Andre Alves Garzia, and its main feature is "Switches Twitter trending topics off".

Extension Screenshots

screenshot

Download remove-twitter-trends Extension CRX File

Download remove-twitter-trends 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

                        This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.                    

Extension Basic Information

Name remove-twitter-trends remove-twitter-trends
ID pdbaomfhmpcbdabjpjfpoehhjnphdoac
Official URL https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac
Description Switches Twitter trending topics off
File Size 1.45 MB
Installation Count 918
Current Version 1.0.1
Last Updated 2021-12-31
Publish Date 2021-12-31
Rating 3.43/5 Total 7 Ratings
Developer Andre Alves Garzia
Email [email protected]
Payment Type free
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "remove-twitter-trends",
    "description": "Switches Twitter trending topics off",
    "version": "1.0.1",
    "icons": {
        "64": "icons\/icon512.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "browser-polyfill.js",
                "mithril.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ]
}