Better Twitter
Make Twitter great again by removing unwanted contents from your timeline.
Qu'est-ce que Better Twitter ?
Better Twitter est une extension Chrome développée par :Dream, et sa fonction principale est "Make Twitter great again by removing unwanted contents from your timeline.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Better Twitter
Téléchargez les fichiers d'extension Better Twitter 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
The current settings allow you to hide the following elements: - view counts - tweet analytics - share buttons - ads & promoted tweets - promoted account (who to follow section only) - 'You might like' tweets Please note that in case of any new UI changes on Twitter, it may take 1-3 days for our extension to update. Feels free to leave feedback and suggestions, as I will be continue improving the extension and add more features later on. Changelog: v.10.3 (18/01/2023) - Added new option to hide 'You might like' tweets v1.0.2 (15/01/2023) - Updated to correspond to new UI changes - Added a new option to hide tweet analytics
Informations de Base sur l'Extension
Nom | Better Twitter |
ID | pdpffnhppidmpbfpflnclfkfgcgimblo |
URL Officiel | https://chromewebstore.google.com/detail/better-twitter/pdpffnhppidmpbfpflnclfkfgcgimblo |
Description | Make Twitter great again by removing unwanted contents from your timeline. |
Taille du Fichier | 30.66 KB |
Nombre d'Installations | 41 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2023-01-19 |
Date de Publication | 2022-12-26 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | :Dream |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Better Twitter", "version": "1.0.3", "description": "Make Twitter great again by removing unwanted contents from your timeline.", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.js" ] } ], "action": { "default_title": "Better Twitter", "default_popup": "popup.html" }, "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |