GG.Skin Trade Manager

GG.Skin Trade Manager

The gg.skin browser extension is designed to secure trades on the website and prevent potential issues.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GG.Skin Trade Manager",
  "version": "1.0.12",
  "description": "The gg.skin browser extension is designed to secure trades on the website and prevent potential issues.",
  "background": {
    "service_worker": "src/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": {
      "16": "icon-16.png",
      "32": "icon-32.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://gg.skin/*"
      ],
      "js": [
        "src/content/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-16.png",
        "icon-48.png"
      ],
      "matches": []
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://gg.skin/*"
    ]
  },
  "host_permissions": [
    "*://gg.skin/*",
    "*://steamcommunity.com/*"
  ],
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "notifications",
    "alarms",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ]
}