Etherscan Quick

Access etherscan pages quickly

Τι είναι το Etherscan Quick;

Το Etherscan Quick είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dan, και η κύρια λειτουργία του είναι "Access etherscan pages quickly".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Etherscan Quick

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

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

                        Etherscan Quick.  

Highlight the address bar, press e, then press tab, paste in an address or a transaction hash, then press enter.  The extension will take you to the Etherscan page for the address or transaction.

Update: prepend "r" onto the address or tx to go to rinkeby Etherscan.

Update 28 May 2019: Press e, then press tab, then type 'weth' and press enter to go to https://etherscan.io/address/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 or prepend 'weth' onto an address to go to https://etherscan.io/token/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2?a=
. Update 23 July 2019: WIP feature. Adds an OpenSea link to token transfers. Update 7 August 2019: Fixes known issues with adding OpenSea links to token transfers. Update 18 December 2019: Adapts to changes Etherscan made and prevents NaN issues. Update 1 January 2020: Support for ENS lookups Update 7 July 2021: Fixes support for ENS lookups, fixes links to OpenSea that broke as a result of a change to the Etherscan UI, adds links from Rinkeby Etherscan to OpenSea's testnets site, and adds support for Ropsten (prepend "o"), Goerli (prepend "g"), and Kovan (prepend "k").

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

Όνομα Etherscan Quick Etherscan Quick
ID nplfockicpoicmabmpjjkdiepdajflbn
Επίσημο URL https://chrome.google.com/webstore/detail/etherscan-quick/nplfockicpoicmabmpjjkdiepdajflbn
Περιγραφή Access etherscan pages quickly
Μέγεθος Αρχείου 28.48 KB
Αριθμός Εγκαταστάσεων 697
Τρέχουσα Έκδοση 1.1.4
Τελευταία Ενημέρωση 2021-07-07
Ημερομηνία Δημοσίευσης 2020-01-01
Αξιολόγηση 4.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής dan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου http://danieljamesviau.com/scribe-extension-privacy-policy.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Etherscan Quick",
    "description": "Access etherscan pages quickly",
    "omnibox": {
        "keyword": "e"
    },
    "icons": {
        "16": "e.jpg"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/etherscan.io\/tx\/*",
                "https:\/\/rinkeby.etherscan.io\/tx\/*"
            ]
        }
    ],
    "version": "1.1.4",
    "minimum_chrome_version": "9",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/api.opensea.io\/api\/v1\/asset_contract\/*"
    ]
}