NFTBlocker for Twitter

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

Co to jest NFTBlocker for Twitter?

NFTBlocker for Twitter to rozszerzenie Chrome opracowane przez theo546, a jego główną funkcją jest „This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NFTBlocker for Twitter

Pobierz pliki rozszerzeń NFTBlocker for Twitter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa NFTBlocker for Twitter NFTBlocker for Twitter
ID maafcaodamkhklcfpdgmadkdecaihinp
Oficjalny URL https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp
Opis This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Rozmiar pliku 23.11 KB
Liczba instalacji 74
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2022-01-22
Data Publikacji 2022-01-22
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper theo546
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/theo546/NFTBlocker-for-Twitter
Adres URL Strony Pomocy https://github.com/theo546/NFTBlocker-for-Twitter/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}