MarketApp P2P

MarketApp P2P

Creates P2P exchanges between Steam users

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "MarketApp P2P",
  "description": "Creates P2P exchanges between steam users",
  "version": "1.2.2",
  "action": {
    "default_title": "MarketApp P2P",
    "default_icon": "img/favicon_csgo.png",
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js",
      "js/offscreen.js",
      "js/vendor.js"
    ],
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://steamcommunity.com/*/*/tradeoffers",
        "https://steamcommunity.com/*/*/tradeoffers/*"
      ],
      "js": [
        "js/vendor.js",
        "js/inject.js"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "storage",
    "webRequest",
    "cookies",
    "tabs",
    "activeTab",
    "declarativeNetRequest",
    "alarms"
  ],
  "host_permissions": [
    "https://steamcommunity.com/*",
    "https://api.steampowered.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "img/favicon_csgo_16.png",
    "48": "img/favicon_csgo_48.png",
    "128": "img/favicon_csgo.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "113.0"
    }
  }
}