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.”。
扩展截图
下载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 |
ID | mbglhphbjpgjhkmhmjcebjoijlnogccp |
官方URL | 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" ] } ] } |