Twitter Sanitizer
Improve your Twitter experience by hiding different features.
Cos'è Twitter Sanitizer?
Twitter Sanitizer è un'estensione di Chrome sviluppata da Hristiyan Dodov, e la sua funzione principale è "Improve your Twitter experience by hiding different features.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Sanitizer
Scarica i file di estensione Twitter Sanitizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Twitter Sanitizer |
ID | amdinnnilgkcpgohiijcejpnhgngmfdl |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl |
Descrizione | Improve your Twitter experience by hiding different features. |
Dimensione del File | 29.21 KB |
Conteggio Installazioni | 176 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2017-06-26 |
Data di Pubblicazione | 2017-06-25 |
Valutazione | 4.00/5 Totale 3 Valutazioni |
Sviluppatore | Hristiyan Dodov |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } ] } |