Forbole X

Forbole X

A comprehensive multi-crypto management tool in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Forbole X",
  "version": "1.2.5",
  "manifest_version": 3,
  "description": "A comprehensive multi-crypto management tool in your browser",
  "icons": {
    "512": "logo512.png"
  },
  "action": {
    "default_icon": "logo512.png",
    "default_popup": "index.html"
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.forbole.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scriptToInject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "hid"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}