Regna | Ens Discovery Tool

Twitter Ens discovery. Inspect any profile that has a name ending in .eth

什麼是Regna | Ens Discovery Tool?

Regna | Ens Discovery Tool是由https://regna.ai開發的Chrome擴展程式,該擴展的主要功能是“Twitter Ens discovery. Inspect any profile that has a name ending in .eth”。

擴展截圖

screenshot
screenshot

下載Regna | Ens Discovery Tool擴展crx文件

下載Regna | Ens Discovery Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Inspired by the rise of ens clubs, we have decided to make a tool that makes it easy to inspect all profiles on Twitter with a valid ENS name

Currently, you can see all of their ENS names filtered by clubs.

Roadmap:
surprise

F.A.Q.
1) Do I need to log in with Metamask?
No. The extension uses the same on chain data available on Etherscan or Opensea.

2) How do you detect what a person owns?
When an ENS name is displayed, you can easily search for the owner of that name. Once you know the adrress of the owner, you can see all their assets.

3) Why have you built this?
This extension was built because searching what ENS names someone holds  on Opensea is not practical. Imagine being 1-click away from seeing what your Twitter frens have.

4) How do I start using the extension?
Once installed, it works automatically. No further configurations needed. Simply start browsing on Twitter.                    

擴展基本資訊

名稱 Regna | Ens Discovery Tool Regna | Ens Discovery Tool
ID ndhnfifmgmkcakpelkdlkhhnkldgnapl
官方網址 https://chromewebstore.google.com/detail/regna-ens-discovery-tool/ndhnfifmgmkcakpelkdlkhhnkldgnapl
簡介 Twitter Ens discovery. Inspect any profile that has a name ending in .eth
檔案大小 236 KB
安裝次數 37
目前版本 0.1.4
更新時間 2022-11-10
上架時間 2022-06-09
開發者 https://regna.ai
電子郵箱 [email protected]
付費類型 free
擴展官網 https://regna.ai/extension
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Regna | Ens Discovery Tool",
    "description": "Twitter Ens discovery. Inspect any profile that has a name ending in .eth",
    "version": "0.1.4",
    "manifest_version": 3,
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "twitter.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "injectContent.js"
            ]
        }
    ]
}