SteamGifts trading cards highlighter

SteamGifts trading cards highlighter

This extension will highlight the games with trading cards on steamgifts.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "1.0.1",
  "default_locale": "ru",
  "permissions": [
    "activeTab",
    "*://store.steampowered.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.steamgifts.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery.js",
        "script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "128": "icon-128.png"
  },
  "options_page": "options.html"
}