Blockchain Address Navigator

Place mouse cursor on the blockchain address on any Web page to see the details for this address

Τι είναι το Blockchain Address Navigator;

Το Blockchain Address Navigator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bitquery Inc., και η κύρια λειτουργία του είναι "Place mouse cursor on the blockchain address on any Web page to see the details for this address".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Blockchain Address Navigator

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

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

                        Introducing the Blockchain Address Navigator, a powerful and user-friendly plugin for Google Chrome that streamlines the process of locating and analyzing wallet addresses within various blockchain networks. With just a few clicks, you can access key information such as wallet balance, transaction count, wallet activation date, and the date of the last transaction.
Our plugin supports a wide range of blockchain networks, including Ethereum, Bitcoin, Solana and others.
      For even more information about a specific wallet, simply access the context menu and select "Open in Bitquery Explorer" to dive deeper into the wallet's details using our comprehensive explorer tool.
Elevate your blockchain experience with the Blockchain Address Navigator, making it easier than ever to track and analyze wallets across multiple networks.
      To start using the plugin, press the button below to get API key for your account for Bitquery API. If you do not have account, register first.                    

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

Όνομα Blockchain Address Navigator Blockchain Address Navigator
ID lbmffgdmgohlpkdodoiampiglamcmnfe
Επίσημο URL https://chromewebstore.google.com/detail/blockchain-address-naviga/lbmffgdmgohlpkdodoiampiglamcmnfe
Περιγραφή Place mouse cursor on the blockchain address on any Web page to see the details for this address
Μέγεθος Αρχείου 294 KB
Αριθμός Εγκαταστάσεων 32
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2023-04-20
Ημερομηνία Δημοσίευσης 2023-01-06
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Bitquery Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://bitquery.io/
Διεύθυνση URL της Σελίδας Βοήθειας https://support.bitquery.io/hc/en-us/requests/new
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blockchain Address Navigator",
    "version": "0.0.4",
    "description": "Place mouse cursor on the blockchain address on any Web page to see the details for this address",
    "action": {
        "title": "Blockchain Address Navigator",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "logo\/logo16.png",
        "32": "logo\/logo32.png",
        "48": "logo\/logo48.png",
        "128": "logo\/logo128.png"
    },
    "author": "https:\/\/bitquery.io",
    "homepage_url": "https:\/\/bitquery.io",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "style.css"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "service_worker": "bg.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "bg.js",
                "renderEth.js",
                "images\/*.png",
                "images\/*.svg",
                "settings.html",
                "welcome.html",
                "welcome.js",
                "settings.js",
                "popupDefault.js"
            ],
            "matches": [
                "https:\/\/graphql.bitquery.io\/*",
                "chrome:\/\/extensions\/*",
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}