FunPay Lite Bot

FunPay Lite Bot

Lite Bot for funpay.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "author": "NightStranger",
  "description": "__MSG_extDescription__",
  "version": "0.1.9",
  "default_locale": "ru",
  "icons": {
    "128": "assets/logo.png"
  },
  "action": {
    "default_icon": "assets/logo.png"
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.funpay.com/*",
        "https://funpay.com/*"
      ],
      "css": [
        "content/static/style.css"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "alarms"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "style/*",
        "content/*"
      ],
      "matches": [
        "https://funpay.com/*"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  }
}