NFTBlocker for Twitter

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

Qu'est-ce que NFTBlocker for Twitter ?

NFTBlocker for Twitter est une extension Chrome développée par theo546, et sa fonction principale est "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NFTBlocker for Twitter

Téléchargez les fichiers d'extension NFTBlocker for Twitter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom NFTBlocker for Twitter NFTBlocker for Twitter
ID maafcaodamkhklcfpdgmadkdecaihinp
URL Officiel https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp
Description This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Taille du Fichier 23.11 KB
Nombre d'Installations 74
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-01-22
Date de Publication 2022-01-22
Évaluation 5.00/5 Total 1 Évaluations
Développeur theo546
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/theo546/NFTBlocker-for-Twitter
URL de la Page d'Aide https://github.com/theo546/NFTBlocker-for-Twitter/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}