Steam Market Analyzer

Steam Market Analyzer

This extension will help you to trade on Steam market

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.4",
  "permissions": [
    "https://steamcommunity.com/*",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}