Regna | Ens Discovery Tool

Regna | Ens Discovery Tool

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*"
      ],
      "js": [
        "injectContent.js"
      ]
    }
  ]
}