Wizardry

Wizardry

This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wizardry",
  "description": "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.",
  "version": "0.7.0",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-128.png"
  },
  "icons": {
    "16": "icon-16.png",
    "19": "icon-19.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "externally_connectable": {
    "matches": [
      "https://opensea.io/*",
      "https://*.wizardry.tools/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://opensea.io/*",
        "https://*.wizardry.tools/*"
      ],
      "css": [
        "app.css"
      ],
      "js": [
        "wizardry.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "icon-coin.png",
    "loading-indicator.gif"
  ]
}