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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}