WalletChat

WalletChat

The NFT Social Layer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WalletChat",
  "description": "The NFT Social Layer",
  "version": "2.1.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open WalletChat popup"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "storage",
    "tabs",
    "alarms"
  ],
  "icons": {
    "512": "logo512.png"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "modal.html"
      ],
      "matches": [
        "*://*.looksrare.org/*",
        "*://*.x2y2.io/*",
        "*://*.opensea.io/*"
      ]
    }
  ],
  "devtools_page": "index.html"
}