Clean Twitter
Remove all the annoying clutter from your Twitter.
Cos'è Clean Twitter?
Clean Twitter è un'estensione di Chrome sviluppata da dhaiwatpandya, e la sua funzione principale è "Remove all the annoying clutter from your Twitter.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clean Twitter
Scarica i file di estensione Clean Twitter 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
Enhance your Twitter experience by removing some of the clutter. Currently supported features: 1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc) 2) No metrics/numbers (Likes, RTs, replies, followers) You can turn any of the features on and off at any time. This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.
Informazioni di Base sull'Estensione
Nome | Clean Twitter |
ID | ibcjnfhpdjinbcmojnmpnokcgfljiebb |
URL Ufficiale | https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb |
Descrizione | Remove all the annoying clutter from your Twitter. |
Dimensione del File | 98.75 KB |
Conteggio Installazioni | 306 |
Versione Corrente | 0.3.0 |
Ultimo Aggiornamento | 2021-02-26 |
Data di Pubblicazione | 2021-02-16 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | dhaiwatpandya |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Dhaiwat10/clean-twitter |
URL della Pagina di Aiuto | https://github.com/Dhaiwat10/clean-twitter/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean Twitter", "description": "Remove all the annoying clutter from your Twitter.", "version": "0.3.0", "icons": { "16": "icon.png", "32": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery.js", "js\/content.js", "js\/popup.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_title": "Clean Twitter", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs" ] } |