remove-twitter-trends
Switches Twitter trending topics off
Qu'est-ce que remove-twitter-trends ?
remove-twitter-trends est une extension Chrome développée par Andre Alves Garzia, et sa fonction principale est "Switches Twitter trending topics off".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension remove-twitter-trends
Téléchargez les fichiers d'extension remove-twitter-trends au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | remove-twitter-trends |
ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac |
URL Officiel | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac |
Description | Switches Twitter trending topics off |
Taille du Fichier | 1.45 MB |
Nombre d'Installations | 918 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2021-12-31 |
Date de Publication | 2021-12-31 |
Évaluation | 3.43/5 Total 7 Évaluations |
Développeur | Andre Alves Garzia |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |