SeaFloor

SeaFloor

A browser extension by SeaFloor that lets you check the latest stats for your NFTs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A browser extension by SeaFloor that lets you check the latest stats for your NFTs.",
  "version": "0.7.3",
  "manifest_version": 3,
  "name": "SeaFloor",
  "options_page": "options.html",
  "author": "SeaFloor",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-128.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.opensea.io/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "http://localhost:3009/*",
    "https://www.seafloor.gq/*"
  ],
  "content_security_policy": {
    "isolated_world": "script-src 'self'"
  },
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "puff.svg",
        "arrow-down.svg",
        "arrow-up.svg",
        "arrow-change-up.svg",
        "sort.svg",
        "ether.svg",
        "sample-banner.jpg"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}