NFTBlocker for Twitter

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

Hvad er NFTBlocker for Twitter?

NFTBlocker for Twitter er en Chrome-udvidelse udviklet af theo546, og dens hovedfunktion er "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).".

Udvidelsesskærmbilleder

screenshot

Download NFTBlocker for Twitter-udvidelses-CRX-fil

Download NFTBlocker for Twitter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn NFTBlocker for Twitter NFTBlocker for Twitter
ID maafcaodamkhklcfpdgmadkdecaihinp
Officiel URL https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp
Beskrivelse This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Filstørrelse 23.11 KB
Antal Installationer 74
Nuværende Version 1.0.1
Senest Opdateret 2022-01-22
Udgivelsesdato 2022-01-22
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler theo546
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/theo546/NFTBlocker-for-Twitter
Hjælpeside-URL https://github.com/theo546/NFTBlocker-for-Twitter/issues
Understøttede Sprog 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"
            ]
        }
    ]
}