Steam Hover

Steam Hover

Show Steam app details with mouse hover on a Steam link

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Steam Hover",
  "version": "1.1.1",
  "version_name": "1.1.1",
  "manifest_version": 2,
  "description": "Show Steam app details with mouse hover on a Steam link",
  "homepage_url": "https://skylark95.github.io/chrome-steam-hover/",
  "minimum_chrome_version": "42",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "js/vendor.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "http://store.steampowered.com/*"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.min.js",
        "js/steamhover.js"
      ],
      "css": [
        "css/vendor.min.css",
        "css/steamhover.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://skylark95.github.io/chrome-steam-hover/*"
      ],
      "js": [
        "js/site.js"
      ]
    }
  ]
}