TF2 S.T.A.R.S.

TF2 S.T.A.R.S.

Team Fortress 2 player ratings based on ETF2L and UGC

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TF2 S.T.A.R.S.",
  "version": "1.4.1",
  "version_name": "1.4.1",
  "description": "Team Fortress 2 player ratings based on ETF2L and UGC",
  "homepage_url": "http://steamcommunity.com/groups/stars-tf2",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://logs.tf/*"
      ],
      "js": [
        "utils.js",
        "css.js",
        "jquery.js",
        "TF.js",
        "TFPlayer.js",
        "context-logstf.js"
      ]
    },
    {
      "matches": [
        "*://steamcommunity.com/*"
      ],
      "js": [
        "utils.js",
        "css.js",
        "jquery.js",
        "TF.js",
        "TFPlayer.js",
        "context-steam.js"
      ]
    },
    {
      "matches": [
        "*://tf2center.com/*"
      ],
      "js": [
        "utils.js",
        "css.js",
        "jquery.js",
        "TF.js",
        "TFPlayer.js",
        "context-tf2center.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "page_action": {
    "default_icon": "icon-19.png",
    "default_title": "TF2 S.T.A.R.S."
  },
  "permissions": [
    "declarativeContent",
    "storage",
    "unlimitedStorage",
    "http://api.etf2l.org/",
    "http://www.ugcleague.com/",
    "http://api.steampowered.com/"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2
}