Contract Mate
Adds a quick access to deth.net editor to view contracts on different etherscan like sites.
Что такое Contract Mate?
Contract Mate - это расширение Chrome, разработанное JC, и его основная функция - "Adds a quick access to deth.net editor to view contracts on different etherscan like sites.".
Снимки экрана расширения
Скачать файл CRX расширения Contract Mate
Скачайте файлы расширений 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" ] } ] } |