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" ] } ] } |