Twitter Bot Hider
Hides twitter bots from your timeline.
Cos'è Twitter Bot Hider?
Twitter Bot Hider è un'estensione di Chrome sviluppata da Ebu, e la sua funzione principale è "Hides twitter bots from your timeline.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Bot Hider
Scarica i file di estensione Twitter Bot Hider 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
Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies. The source code can be found here: https://github.com/EbuOgden/TwitterBotHider
Informazioni di Base sull'Estensione
Nome | Twitter Bot Hider |
ID | efpmoenhggjbiaeomapapohigijbobgb |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb |
Descrizione | Hides twitter bots from your timeline. |
Dimensione del File | 40.87 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2022-10-31 |
Data di Pubblicazione | 2022-10-31 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Ebu |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Bot Hider", "version": "0.1.1", "description": "Hides twitter bots from your timeline.", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "https:\/\/*.githubusercontent.com\/*" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "Twitter Bot Hider", "default_popup": "popup.html" }, "manifest_version": 3 } |