Twitter Cleaner
Removes annoying twitter boxes
Cos'è Twitter Cleaner?
Twitter Cleaner è un'estensione di Chrome sviluppata da https://cavar.net, e la sua funzione principale è "Removes annoying twitter boxes".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Cleaner
Scarica i file di estensione Twitter Cleaner 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
Removes trending, who to follow and footer boxes. Report any issues here https://github.com/Palethorn/twitter_cleaner/issues
Informazioni di Base sull'Estensione
Nome | |
ID | oocpmdgjlccdinophpbbkmfdjooflfac |
URL Ufficiale | https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac |
Descrizione | Removes annoying twitter boxes |
Dimensione del File | 92.48 KB |
Conteggio Installazioni | 50 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2019-11-21 |
Data di Pubblicazione | 2019-11-21 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://cavar.net |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Palethorn/twitter_cleaner |
URL della Pagina di Aiuto | https://github.com/Palethorn/twitter_cleaner/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Cleaner", "version": "2.0.0", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "description": "Removes annoying twitter boxes", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |