Steam Pricer

Steam Pricer

Steam Pricer Helper helps save money on Steam games.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.0.2",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "16": "images/icons/16.png",
    "48": "images/icons/48.png",
    "128": "images/icons/128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.steampowered.com/*",
        "*://steampowered.com/*",
        "*://steambuy.com/*",
        "*://*.steampay.com/*"
      ],
      "js": [
        "index.content.js"
      ]
    }
  ],
  "permissions": [
    "https://*.igdb.com/",
    "https://*.steammachine.ru/*",
    "*://*.steampowered.com/*",
    "*://steampowered.com/*",
    "*://steambuy.com/*",
    "*://*.steampay.com/*"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icons/16.png",
      "24": "images/icons/24.png",
      "32": "images/icons/32.png"
    },
    "default_popup": "popup.html"
  }
}