Steam All Region Price Checker

Steam All Region Price Checker

Enables the user display all the regional costs of a Steam game simultaneously

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Steam All Region Price Checker",
  "version": "2.0.3",
  "manifest_version": 2,
  "homepage_url": "https://www.steamregionalprices.com/",
  "description": "Enables the user display all the regional costs of a Steam game simultaneously",
  "background": {
    "scripts": [
      "js/jquery-1.7.1.min.js",
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "*://store.steampowered.com/*",
    "*://steamregionalprices.com/*",
    "*://*.steamregionalprices.com/"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://store.steampowered.com/*",
        "*://www.steamregionalprices.com/*"
      ],
      "js": [
        "js/jquery-1.7.1.min.js",
        "js/steamRegions.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}