Steam Profile Assistant

Steam Profile Assistant

Does various things to assist with making Steam profile artwork.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Steam Profile Assistant",
  "version": "0.3.12",
  "description": "Does various things to assist with making Steam profile artwork.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://steamcommunity.com/*",
        "http://steamcommunity.com/*",
        "https://store.steampowered.com/points/shop/*"
      ],
      "js": [
        "bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "https://*.githubusercontent.com/*",
    "http://*.githubusercontent.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "images/*.png",
    "massUpload.js",
    "massUpload.css"
  ]
}