Open in Steam

Open in Steam

This Extension opens links to steam in Steam instead of in Browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "steam.js"
      ],
      "matches": [
        "http://store.steampowered.com/*",
        "https://store.steampowered.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "This Extension opens links to steam in Steam instead of in Browser",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "Open in Steam",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "version": "0.1.1"
}