BoomPanel.com extension

BoomPanel.com extension

Allows you to view player stats from community game servers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BoomPanel.com extension",
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "version": "1.07",
  "manifest_version": 2,
  "description": "Allows you to view player stats from community game servers",
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_title": "BoomPanel.com extension",
    "default_popup": "popup.html"
  },
  "permissions": [
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.steamcommunity.com/id/*",
        "*://*.steamcommunity.com/profiles/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/moment-with-locales.min.js",
        "scripts/main.js"
      ]
    }
  ]
}