Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

Cos'è Hide Verified Twitter Users?

Hide Verified Twitter Users è un'estensione di Chrome sviluppata da sardistic, e la sua funzione principale è "A Chrome extension that hides verified Twitter users' posts.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hide Verified Twitter Users

Scarica i file di estensione Hide Verified Twitter Users 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

                        Chrome Extension: Hide Verified Posts
This Chrome extension allows you to toggle hiding verified posts on Twitter. When the extension is active, it will hide all tweets from verified users.

How to use
Install the extension in your Chrome browser.
Click on the extension icon in the toolbar to toggle between hiding and showing verified posts.
The extension will automatically update the display of tweets on the current page according to your preference (hide/show verified posts).

This is a very crude extension that sometimes produces errors, but works enough for my purposes. If you'd like to update or change any of the code, it is published on GitHub here:

https://github.com/sardistic/Hide-Verified-Twitter-Users                    

Informazioni di Base sull'Estensione

Nome Hide Verified Twitter Users Hide Verified Twitter Users
ID egpeogmkamgdmolhpkajgnoookedcghb
URL Ufficiale https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb
Descrizione A Chrome extension that hides verified Twitter users' posts.
Dimensione del File 7.72 KB
Conteggio Installazioni 62
Versione Corrente 1.0
Ultimo Aggiornamento 2023-04-27
Data di Pubblicazione 2023-04-26
Valutazione 2.00/5 Totale 1 Valutazioni
Sviluppatore sardistic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.sardistic.com
URL della Pagina di Aiuto https://ko-fi.com/sardistic
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Verified Twitter Users",
    "version": "1.0",
    "description": "A Chrome extension that hides verified Twitter users' posts.",
    "icons": {
        "48": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}