Blue Check Hider
Identify and hide Twitter Blue users
Cos'è Blue Check Hider?
Blue Check Hider è un'estensione di Chrome sviluppata da https://gsajith.com, e la sua funzione principale è "Identify and hide Twitter Blue users".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Blue Check Hider
Scarica i file di estensione Blue Check 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
This extension will hide any users with a verified checkmark next to their name in the Twitter web UI.
You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8. Informazioni di Base sull'Estensione
| Nome | |
| ID | jhkoihkndkemdikaiafkiolgidghjfkl |
| URL Ufficiale | https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl |
| Descrizione | Identify and hide Twitter Blue users |
| Dimensione del File | 497 KB |
| Conteggio Installazioni | 611 |
| Versione Corrente | 1.3 |
| Ultimo Aggiornamento | 2023-05-05 |
| Data di Pubblicazione | 2023-04-21 |
| Valutazione | 4.25/5 Totale 8 Valutazioni |
| Sviluppatore | https://gsajith.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/gsajith/blue-check-hider |
| URL della Pagina di Aiuto | https://github.com/gsajith/blue-check-hider |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Blue Check Hider",
"version": "1.3",
"description": "Identify and hide Twitter Blue users",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"js": [
".\/static\/js\/content.js"
],
"run_at": "document_end",
"matches": [
"https:\/\/*.twitter.com\/*",
"http:\/\/*.twitter.com\/*",
"https:\/\/twitter.com\/*",
"http:\/\/twitter.com\/*"
]
}
],
"background": {
"service_worker": ".\/static\/js\/background.js",
"type": "module"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_title": "Blue Check Hider"
}
} | |