ECHO

ECHO

The easiest, fastest way to generate ECHO widget

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ECHO",
  "description": "The easiest, fastest way to generate ECHO widget",
  "version": "0.0.12",
  "icons": {
    "16": "echo16.png",
    "32": "echo32.png",
    "48": "echo48.png",
    "128": "echo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mirror.xyz/*"
      ],
      "js": [
        "/mirror.dashboard.js"
      ],
      "css": [
        "/mirror.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://x2y2.io/*"
      ],
      "js": [
        "/x2y2.js"
      ],
      "css": [
        "/x2y2.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://looksrare.org/*"
      ],
      "js": [
        "/looksrare.js"
      ],
      "css": [
        "/looksrare.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://opensea.io/*"
      ],
      "js": [
        "/opensea.js"
      ],
      "css": [
        "/opensea.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "/toolbar.js"
      ],
      "css": [
        "/remixicon/remixicon.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*",
        "/remixicon/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}