Hide Blue Checks
Hide tweets from accounts with blue checkmarks.
Cos'è Hide Blue Checks?
Hide Blue Checks è un'estensione di Chrome sviluppata da Ian Webster, e la sua funzione principale è "Hide tweets from accounts with blue checkmarks.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide Blue Checks
Scarica i file di estensione Hide Blue Checks 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 hides tweets from accounts with Blue "Verified" Checkmarks. Informazioni di Base sull'Estensione
| Nome | |
| ID | ahghnnmomjbgbfmmeiafbilhjlloaooc |
| URL Ufficiale | https://chromewebstore.google.com/detail/hide-blue-checks/ahghnnmomjbgbfmmeiafbilhjlloaooc |
| Descrizione | Hide tweets from accounts with blue checkmarks. |
| Dimensione del File | 17.17 KB |
| Conteggio Installazioni | 121 |
| Versione Corrente | 0.0.1 |
| Ultimo Aggiornamento | 2022-11-10 |
| Data di Pubblicazione | 2022-11-07 |
| Valutazione | 4.50/5 Totale 4 Valutazioni |
| Sviluppatore | Ian Webster |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/typpo/hide-blue-checks |
| URL della Pagina di Aiuto | https://github.com/typpo/hide-blue-checks/issues/new |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hide Blue Checks",
"version": "0.0.1",
"description": "Hide tweets from accounts with blue checkmarks.",
"homepage_url": "https:\/\/github.com\/typpo\/hide-blue-checks",
"manifest_version": 3,
"minimum_chrome_version": "100",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "100.0"
}
},
"icons": {
"128": "icon.3998fbaf.png"
},
"permissions": [],
"host_permissions": [
"https:\/\/twitter.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"content.b1d20040.js"
],
"run_at": "document_end",
"css": []
}
]
} | |