remove-twitter-trends

Switches Twitter trending topics off

Wat is remove-twitter-trends?

remove-twitter-trends is een Chrome-extensie ontwikkeld door Andre Alves Garzia, en de belangrijkste functie is "Switches Twitter trending topics off".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie remove-twitter-trends

Download remove-twitter-trends-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam remove-twitter-trends remove-twitter-trends
ID pdbaomfhmpcbdabjpjfpoehhjnphdoac
Officiële URL https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac
Beschrijving Switches Twitter trending topics off
Bestandsgrootte 1.45 MB
Aantal Installaties 918
Huidige Versie 1.0.1
Laatst Bijgewerkt 2021-12-31
Publicatiedatum 2021-12-31
Beoordeling 3.43/5 Totaal 7 Beoordelingen
Ontwikkelaar Andre Alves Garzia
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}