Waxpeer Extension

Waxpeer Extension

Extension that makes P2P possible

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Waxpeer Extension",
  "manifest_version": 3,
  "version": "2.2.13",
  "description": "Extension that makes P2P possible",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://steamcommunity.com/*",
        "*://steampowered.com/*"
      ],
      "js": [
        "src/content/steam-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "Waxpeer Extension",
    "default_popup": "src/popup.html"
  },
  "minimum_chrome_version": "116",
  "background": {
    "service_worker": "src/background.js"
  },
  "permissions": [
    "storage",
    "offscreen",
    "notifications",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "https://waxpeer.com/*",
    "*://steamcommunity.com/*",
    "*://api.steampowered.com/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://waxpeer.com/*"
      ],
      "resources": [
        "*.js",
        "public/buy_pick.mp3"
      ]
    }
  ]
}