Contract Mate

Adds a quick access to deth.net editor to view contracts on different etherscan like sites.

Cos'è Contract Mate?

Contract Mate è un'estensione di Chrome sviluppata da JC, e la sua funzione principale è "Adds a quick access to deth.net editor to view contracts on different etherscan like sites.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Contract Mate

Scarica i file di estensione Contract Mate in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This plugin adds a small quick shortcut "View in VS Code" to the related deth.net page on etherscan like sites page of contracts. Helps developers to view the contract code more comfortable.

Currently supported 19 etherscan.io like sites.

source code: https://github.com/jcxia43/contract-mate                    

Informazioni di Base sull'Estensione

Nome Contract Mate Contract Mate
ID mbglhphbjpgjhkmhmjcebjoijlnogccp
URL Ufficiale https://chromewebstore.google.com/detail/contract-mate/mbglhphbjpgjhkmhmjcebjoijlnogccp
Descrizione Adds a quick access to deth.net editor to view contracts on different etherscan like sites.
Dimensione del File 25.07 KB
Conteggio Installazioni 54
Versione Corrente 1.1
Ultimo Aggiornamento 2022-08-22
Data di Pubblicazione 2021-12-17
Sviluppatore JC
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jcxia43/contract-mate
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Contract Mate",
    "version": "1.1",
    "description": "Adds a quick access to deth.net editor to view contracts on different etherscan like sites.",
    "icons": {
        "48": "icons\/logo-48.png",
        "96": "icons\/logo-96.png",
        "256": "icons\/logo-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/etherscan.io\/address\/*",
                "*:\/\/ropsten.etherscan.io\/address\/*",
                "*:\/\/rinkeby.etherscan.io\/address\/*",
                "*:\/\/goerli.etherscan.io\/address\/*",
                "*:\/\/kovan.etherscan.io\/address\/*",
                "*:\/\/bscscan.com\/address\/*",
                "*:\/\/testnet.bscscan.com\/address\/*",
                "*:\/\/hecoinfo.com\/address\/*",
                "*:\/\/testnet.hecoinfo.com\/address\/*",
                "*:\/\/ftmscan.com\/address\/*",
                "*:\/\/testnet.ftmscan.com\/address\/*",
                "*:\/\/optimistic.etherscan.io\/address\/*",
                "*:\/\/kovan-optimistic.etherscan.io\/address\/*",
                "*:\/\/polygonscan.com\/address\/*",
                "*:\/\/testnet.polygonscan.com\/address\/*",
                "*:\/\/arbiscan.io\/address\/*",
                "*:\/\/testnet.arbiscan.io\/address\/*",
                "*:\/\/snowtrace.io\/address\/*",
                "*:\/\/testnet.snowtrace.io\/address\/*"
            ],
            "js": [
                "mate.js"
            ]
        }
    ]
}