Regna | Ens Discovery Tool

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

¿Qué es Regna | Ens Discovery Tool?

Regna | Ens Discovery Tool es una extensión de Chrome desarrollada por https://regna.ai, y su función principal es "Twitter Ens discovery. Inspect any profile that has a name ending in .eth".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Regna | Ens Discovery Tool

Descarga archivos de extensión Regna | Ens Discovery Tool en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Regna | Ens Discovery Tool Regna | Ens Discovery Tool
ID ndhnfifmgmkcakpelkdlkhhnkldgnapl
URL Oficial https://chromewebstore.google.com/detail/regna-ens-discovery-tool/ndhnfifmgmkcakpelkdlkhhnkldgnapl
Descripción Twitter Ens discovery. Inspect any profile that has a name ending in .eth
Tamaño del Archivo 236 KB
Cantidad de Instalaciones 37
Versión Actual 0.1.4
Última Actualización 2022-11-10
Fecha de Publicación 2022-06-09
Desarrollador https://regna.ai
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://regna.ai/extension
Idiomas Soportados 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"
            ]
        }
    ]
}