WhaleSniper

WhaleSniper

WhaleSniper is a companion tool that improves your NFT purchasing experience on OpenSea as it adds much needed extra functionality…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.32",
  "manifest_version": 3,
  "name": "WhaleSniper",
  "content_scripts": [
    {
      "matches": [
        "https://opensea.io/*",
        "https://*.opensea.io/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://opensea.io/*",
      "https://*.opensea.io/*"
    ]
  },
  "permissions": [
    "scripting",
    "storage",
    "identity",
    "tabs"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "host_permissions": [
    "https://opensea.io/*",
    "https://*.opensea.io/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.module.css",
        "icon-128.png",
        "icon-34.png",
        "wtg-logo-black-white.png",
        "whaletogether-sq-300.jpg",
        "official-ranking-logo.png",
        "normalized-ranking-logo.png",
        "ether-icon.svg"
      ],
      "matches": [
        "https://opensea.io/*",
        "https://*.opensea.io/*"
      ]
    }
  ],
  "devtools_page": "devtools.html"
}