Twitter Sanitizer
Improve your Twitter experience by hiding different features.
Qu'est-ce que Twitter Sanitizer ?
Twitter Sanitizer est une extension Chrome développée par Hristiyan Dodov, et sa fonction principale est "Improve your Twitter experience by hiding different features.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitter Sanitizer
Téléchargez les fichiers d'extension Twitter Sanitizer 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 extension allows you to hide different parts of Twitter. The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet. Here's the full list of toggles: - Sidebars - Profile counters - Profile card stats - Post RTs and likes - Feed post actions - Followers you know - Notification faces
Informations de Base sur l'Extension
Nom | Twitter Sanitizer |
ID | amdinnnilgkcpgohiijcejpnhgngmfdl |
URL Officiel | https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl |
Description | Improve your Twitter experience by hiding different features. |
Taille du Fichier | 29.21 KB |
Nombre d'Installations | 176 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-06-26 |
Date de Publication | 2017-06-25 |
Évaluation | 4.00/5 Total 3 Évaluations |
Développeur | Hristiyan Dodov |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Sanitizer", "version": "1.1", "author": "Hristiyan Dodov", "description": "Improve your Twitter experience by hiding different features.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "js": [ "hider.js" ], "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ] } ] } |