NFTBlocker for Twitter

This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).

Cos'è NFTBlocker for Twitter?

NFTBlocker for Twitter è un'estensione di Chrome sviluppata da theo546, e la sua funzione principale è "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NFTBlocker for Twitter

Scarica i file di estensione NFTBlocker for Twitter 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 automatically block anyone who has an hexagon-shaped profile picture on Twitter.

The extension is open-source : https://github.com/theo546/NFTBlocker-for-Twitter                    

Informazioni di Base sull'Estensione

Nome NFTBlocker for Twitter NFTBlocker for Twitter
ID maafcaodamkhklcfpdgmadkdecaihinp
URL Ufficiale https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp
Descrizione This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Dimensione del File 23.11 KB
Conteggio Installazioni 74
Versione Corrente 1.0.1
Ultimo Aggiornamento 2022-01-22
Data di Pubblicazione 2022-01-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore theo546
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/theo546/NFTBlocker-for-Twitter
URL della Pagina di Aiuto https://github.com/theo546/NFTBlocker-for-Twitter/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NFTBlocker for Twitter",
    "description": "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).",
    "version": "1.0.1",
    "icons": {
        "48": "icons\/border-48.png"
    },
    "action": {
        "browser_style": true,
        "default_popup": "options.html",
        "default_icon": {
            "16": "icons\/page-16.png",
            "32": "icons\/page-32.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "main_script.js"
            ]
        }
    ]
}