如何在etherscan.io的Top Accounts页面查看完整钱包地址?

huangapple go评论62阅读模式
英文:

How to see full wallet address in etherscan.io Top Accounts?

问题

I can provide the translation for the text you provided:

我正在整理一些以太坊地址的统计信息。

使用etherscan.ioTop Accounts页面:https://etherscan.io/accounts

但是该页面显示的地址被截断包含“...”。

例如:

网站显示:

0x000000...00000000(被截断)

我需要看到完整的地址

0x000000000000000000000000000000000000000

我需要在所有页面上看到所有完整的地址。

我知道可以通过Chrome浏览器页面设置菜单来编辑网站的显示。

有一些Chrome扩展可以使用user scripts来修改网页,比如Greasemonkey(用于JavaScript)或Stylish(用于CSS)。

但我没有找到任何解决这个问题的脚本。

我在互联网上也没有找到任何有用的信息。

我不懂如何手动编辑网页代码。

如果有人能够创建一个适用于Greasemonkey或Stylish的用户脚本来解决这个问题,那将非常棒。

请有人帮助我在所有etherscan.io页面上显示完整的钱包地址。

我感谢。

英文:

I'm putting together a statistic of some ethereum addresses.

Using etherscan.io from the Top Accounts page: https://etherscan.io/accounts

But there the page displays the truncated addresses containing "..."

For example:

The website shows:

0x000000...00000000 (truncated)

But I need to see the entire address:

0x000000000000000000000000000000000000000

I need to see all full addresses on all pages.

I know that it's possible to edit the site's display through the Chrome browser page setting menu.

There are chrome extensions to alter web pages using user scripts like Greasemonkey(for javascript) or Stylish(for css).

But I haven't found any scripts that solve this problem.

I didn't find anything internet that could help.

I have no knowledge about editing web code manually.

It would be great if someone could create a user script for Greasemonkey or Stylish that could solve this.

Please someone help me to show full wallet address on all etherscan.io pages.

I thank.

答案1

得分: 1

我不确定是要为您开发一个完整的 Chrome 扩展,类似于 Stylish,还是以开发者的身份回答这个问题。

免责声明:

> 您绝不应该将代码从未知来源粘贴到您的浏览器控制台。

说了这些,您可以按照以下步骤操作:

  1. 转到 https://etherscan.io/accounts

  2. 右键单击页面的任何空白区域以打开浏览器选项

  3. 选择 "检查元素",这将打开开发者工具。

  4. 寻找并点击 "控制台" 标签按钮。

  5. 粘贴以下代码并按回车键。

    Array.from(document.querySelectorAll('table td a')).map(link => link.href && link.href.indexOf('https://etherscan.io/address/0x') === 0 && (link.innerHTML = link.href.substring(29))).filter(address => !!address)

结果应该如下所示。
扩展的以太坊地址

英文:

I am not sure whether to answer this by developing an entire chrome extension for you like Stylish or just answer this from developer to developer.

Disclaimer:

> You should never paste code from an unknown source into your browser console.

With that said, you could use the following steps:

  1. Go to https://etherscan.io/accounts

  2. Right click on any white area of the page to open browser options

  3. Select "Inspect Element", this will open the developer tools.

  4. Look for and press the "Console" tab button.

  5. Paste the following code and press enter.

    Array.from(document.querySelectorAll('table td a')).map(link => link.href && link.href.indexOf('https://etherscan.io/address/0x') === 0 && (link.innerHTML = link.href.substring(29))).filter(address => !!address)

The result should look like the following.
Expanded ethereum addresses

huangapple
  • 本文由 发表于 2023年5月14日 22:40:17
  • 转载请务必保留本文链接:https://go.coder-hub.com/76248050.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定