NFTBlocker for Twitter

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

Co je NFTBlocker for Twitter?

NFTBlocker for Twitter je rozšíření Chrome vyvinuté theo546, a jeho hlavní funkcí je „This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření NFTBlocker for Twitter

Stáhněte si soubory rozšíření NFTBlocker for Twitter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název NFTBlocker for Twitter NFTBlocker for Twitter
ID maafcaodamkhklcfpdgmadkdecaihinp
Oficiální URL https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp
Popis This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Velikost souboru 23.11 KB
Počet instalací 74
Aktuální Verze 1.0.1
Poslední Aktualizace 2022-01-22
Datum Vydání 2022-01-22
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář theo546
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/theo546/NFTBlocker-for-Twitter
URL Stránky Nápovědy https://github.com/theo546/NFTBlocker-for-Twitter/issues
Podporované Jazyky 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"
            ]
        }
    ]
}