SteamGifts Helper

SteamGifts Helper

Adds usefull stuff on SteamGifts.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SteamGifts Helper",
  "short_name": "SG-Helper",
  "description": "Adds usefull stuff on SteamGifts.com",
  "homepage_url": "https://github.com/seeeeew/SteamGiftsHelper",
  "icons": {
    "16": "img/logo16.png",
    "32": "img/logo32.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "version": "1.1.4",
  "permissions": [
    "*://www.steamgifts.com/",
    "*://store.steampowered.com/",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.steamgifts.com/*"
      ],
      "js": [
        "steamgiftshelper.js"
      ],
      "css": [
        "css/steamgiftshelper.css"
      ]
    }
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "page_action": {
    "default_icon": {
      "19": "img/logo19.png",
      "38": "img/logo38.png"
    },
    "default_title": "SteamGifts Helper options",
    "default_popup": "options.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}