CNFT token check

CNFT token check

Adding CNFT token (such as clay token) check on marketplace like jpg

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CNFT token check",
  "description": "Adding CNFT token (such as clay token) check on marketplace like jpg",
  "version": "1.2",
  "manifest_version": 3,
  "permissions": [
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.jpg.store/*"
      ],
      "js": [
        "dist/main.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  }
}