A Chrome extension that enhances your experience on Etherscan by allowing you to assign custom names to Ethereum addresses and contract hashes. This makes it easier to identify and navigate addresses and contracts on the Etherscan.
Note
This extension has been developed with the extensive help of Chatgpt. This is my first time developing an extension. I therefore hope others would be inspired to contribute back to the extension by adding functionalities, fixing issues, and enhacing UI/UX.
- Replace Ethereum addresses and contract hashes with custom names on Etherscan pages.
- Customize both full and abbreviated address formats.
- Easy-to-use context menu for assigning custom names directly on the page.
- Option to reset and clear all custom names.
- Clone the repository or download the ZIP file.
Copy code
git clone https://github.com/tamiromara/sepolia-etherscan-fields-rename.git
- Open Chrome and go to chrome://extensions.
- Enable Developer mode (toggle on at the top right).
- Click Load unpacked and select the folder containing the extension files.
- Visit any Etherscan page.
- Right-click on an Ethereum address or contract hash and choose Set Custom Name.
- Enter your desired name, and the page will refresh to display your custom name in place of the original address or hash.
To use this extension on either the mainnet or Sepolia Etherscan domains, follow these steps:
- Open the manifest.json file in the extension’s directory.
- Locate the "permissions" section, specifically the host permissions:
"permissions": [
"contextMenus",
"storage",
"scripting",
"https://etherscan.io/*",
"https://sepolia.etherscan.io/*"
],
- To enable the extension for Sepolia Etherscan only, replace or remove the mainnet domain:
"https://sepolia.etherscan.io/*"
For mainnet, use:
"https://etherscan.io/*"
- Save the changes to manifest.json and reload the extension on the Chrome Extensions page (chrome://extensions).
This project is licensed under the MIT License with attribution.
See the LICENSE file for details.
Read the privacy policy here.