Gamefied Wallet

Gamefied Wallet

Custom wallet developed by Gamefied

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Custom wallet developed by Gamefied",
  "version": "2.0.0",
  "name": "Gamefied Wallet",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "options_page": "options.html",
  "author": "https://gamefied.io",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "Gamefied Wallet",
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "34": "icon-34.png",
    "128": "icon-128.png",
    "192": "icon-192.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "clipboardWrite"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inpage.bundle.js",
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}