Floor Watch

Floor Watch

Watch your NFT floor price from badge

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Floor Watch",
  "version": "1.3.1",
  "description": "Watch your NFT floor price from badge",
  "icons": {
    "32": "icons/icon.png",
    "64": "icons/[email protected]",
    "128": "icons/[email protected]"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Floor Watch",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://*.opensea.io/*",
    "https://*.looksrare.org/*",
    "https://*.x2y2.io/*"
  ],
  "permissions": [
    "storage",
    "alarms",
    "cookies",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.opensea.io/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentScript.css"
      ]
    }
  ]
}