NFTBlocker for Twitter

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

Τι είναι το NFTBlocker for Twitter;

Το NFTBlocker for Twitter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον theo546, και η κύρια λειτουργία του είναι "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης NFTBlocker for Twitter

Λήψη αρχείων επέκτασης NFTBlocker for Twitter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα NFTBlocker for Twitter NFTBlocker for Twitter
ID maafcaodamkhklcfpdgmadkdecaihinp
Επίσημο URL https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp
Περιγραφή This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Μέγεθος Αρχείου 23.11 KB
Αριθμός Εγκαταστάσεων 74
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2022-01-22
Ημερομηνία Δημοσίευσης 2022-01-22
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής theo546
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/theo546/NFTBlocker-for-Twitter
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/theo546/NFTBlocker-for-Twitter/issues
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}