SFeeC – Steam Fee Calculator

SFeeC – Steam Fee Calculator

Расширение для подсчета комиссий в Steam

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SFeeC – Steam Fee Calculator",
  "version": "3.0",
  "description": "Расширение для подсчета комиссий в Steam",
  "author": "Nikolay Kolesnik",
  "action": {
    "default_icon": {
      "1280": "assets/icon/1280.png"
    },
    "default_title": "SFeeC",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "1280": "assets/icon/1280.png"
  },
  "short_name": "SFeeC",
  "background": {
    "service_worker": "background/background.js"
  },
  "host_permissions": [
    "*://steamcommunity.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://steamcommunity.com/*"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ]
}