Steam-Buyer

Steam-Buyer

Steam-Buyer is a simple application to make purchases in the Steam store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Steam-Buyer",
  "version": "0.5",
  "description": "Steam-Buyer is a simple application to make purchases in the Steam store.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Steam Buyer",
    "default_popup": "src/popup.html"
  },
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "unlimitedStorage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "lib/jquery.min.js",
      "src/config.js",
      "src/common.js",
      "src/storage.js",
      "src/background.js"
    ]
  }
}