Skinport Plus

Skinport Plus

Enhance your online trading experience on Skinport and Steam with Skinport Plus.

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_extensionName__",
  "version": "24.4.2",
  "description": "__MSG_extensionDescription__",
  "minimum_chrome_version": "105.0",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "optional_host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "scripting"
  ],
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://skinport.com/*"
      ],
      "js": [
        "content/skinport/index.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://steamcommunity.com/*"
      ],
      "js": [
        "content/steamcommunity/index.js"
      ],
      "css": [
        "fonts.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fonts.css",
        "favicon.ico",
        "phishing-blocker/index.html",
        "phishing-blocker/index.css",
        "phishing-blocker/index.js",
        "content/steamcommunity/bridge/script.js"
      ],
      "use_dynamic_url": true,
      "matches": [
        "*://*/*"
      ]
    }
  ]
}