Contract Mate

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

什麼是Contract Mate?

Contract Mate是由JC開發的Chrome擴展程式,該擴展的主要功能是“Adds a quick access to deth.net editor to view contracts on different etherscan like sites.”。

擴展截圖

screenshot

下載Contract Mate擴展crx文件

下載Contract Mate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Contract Mate Contract Mate
ID mbglhphbjpgjhkmhmjcebjoijlnogccp
官方網址 https://chromewebstore.google.com/detail/contract-mate/mbglhphbjpgjhkmhmjcebjoijlnogccp
簡介 Adds a quick access to deth.net editor to view contracts on different etherscan like sites.
檔案大小 25.07 KB
安裝次數 54
目前版本 1.1
更新時間 2022-08-22
上架時間 2021-12-17
開發者 JC
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/jcxia43/contract-mate
支援的語言 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"
            ]
        }
    ]
}