Quick-Reply Steam Comments

Quick-Reply Steam Comments

Send a quick reply to any Steam user

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick-Reply Steam Comments",
  "icons": {
    "16": "img/logo-128.png",
    "48": "img/logo-128.png",
    "128": "img/logo-128.png"
  },
  "version": "1.02",
  "manifest_version": 2,
  "description": "Send a quick reply to any Steam user",
  "browser_action": {
    "default_icon": "img/logo-128.png",
    "default_title": "Quick-Reply Steam Comments",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.steamcommunity.com/id/*",
        "*://*.steamcommunity.com/profiles/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/BigInteger.min.js",
        "libs/converter-min.js",
        "scripts/main.js"
      ]
    }
  ]
}