Stock Up: DeFi, NFT and Web3 Extension

Stock Up: DeFi, NFT and Web3 Extension

Harness the power of Instant web3 research on 1000s of crypto and nft projects right while you browse the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stock Up: DeFi, NFT and Web3 Extension",
  "version": "1.0.28",
  "description": "Harness the power of Instant web3 research on 1000s of crypto and nft projects right while you browse the web.",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "scripting",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "action": {
    "default_title": "Stock Up",
    "default_icon": "icons/default.png",
    "default_popup": "sidebar.html"
  },
  "icons": {
    "128": "icons/favicon.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://opensea.io/*",
        "*://*.opensea.io/*"
      ],
      "css": [
        "css/opensea.css"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/lib/popper.min.js",
        "js/lib/tippy-bundle.umd.min.js",
        "js/lib/tippy.all.min.js",
        "js/opensea.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://looksrare.org/*",
        "*://*.looksrare.org/*"
      ],
      "css": [
        "css/looksrare.css"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/lib/popper.min.js",
        "js/lib/tippy-bundle.umd.min.js",
        "js/lib/tippy.all.min.js",
        "js/looksrare.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "sidebar.html",
        "js/lib/jquery.min.js",
        "js/lib/twitter.widget.js",
        "icons/*",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}