remove-twitter-trends

Switches Twitter trending topics off

Co je remove-twitter-trends?

remove-twitter-trends je rozšíření Chrome vyvinuté Andre Alves Garzia, a jeho hlavní funkcí je „Switches Twitter trending topics off“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření remove-twitter-trends

Stáhněte si soubory rozšíření remove-twitter-trends ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název remove-twitter-trends remove-twitter-trends
ID pdbaomfhmpcbdabjpjfpoehhjnphdoac
Oficiální URL https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac
Popis Switches Twitter trending topics off
Velikost souboru 1.45 MB
Počet instalací 918
Aktuální Verze 1.0.1
Poslední Aktualizace 2021-12-31
Datum Vydání 2021-12-31
Hodnocení 3.43/5 Celkem 7 Hodnocení
Vývojář Andre Alves Garzia
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}