Steam Collection Size Viewer

Steam Collection Size Viewer

Allows you to see steam workshop collection size with just a click of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Steam Collection Size Viewer",
  "short_name": "SCSV",
  "author": {
    "email": "[email protected]"
  },
  "description": "Allows you to see steam workshop collection size with just a click of a button.",
  "version": "1.0.3",
  "version_name": "1.0.3 beta",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "/assets/popup.html"
  },
  "host_permissions": [
    "https://steamcommunity.com/sharedfiles/filedetails/*",
    "https://api.steampowered.com/*"
  ],
  "background": {
    "service_worker": "/assets/service-worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "/assets/content.js"
      ],
      "css": [
        "/assets/custom.css"
      ],
      "matches": [
        "https://steamcommunity.com/sharedfiles/filedetails/*"
      ]
    }
  ]
}