当 Chrome 扩展程序请求“eth 和测试站点”的权限时,这是什么意思?

当 Chrome 扩展程序请求“eth 和测试站点”的权限时,这是什么意思?

Metamask 请求权限

在所有 eth 站点和所有测试站点上读取和更改您的数据

eth什么是“eth site”?它是URL 中包含 的网站吗?

在此处输入图片描述

答案1

此扩展在其manifest.json文件中声明了以下权限:

    ["storage","unlimitedStorage","clipboardWrite","http://localhost:8545/","https://*
.infura.io/","activeTab", "webRequest", "*://*.eth/","*://*.test/","notifications"   ],

因此,它需要访问所有 .eth 和 .test 网站。TIL .eth 是一个 TLD,就像 .com 或 .org 一样。

相关内容