Steam Inventories Scanner

Steam Inventories Scanner

Scanner of steam friends

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Steam Inventories Scanner",
  "manifest_version": 2,
  "version": "1.4",
  "description": "Scanner of steam friends",
  "icons": {
    "16": "./logo/16.png",
    "32": "./logo/32.png",
    "48": "./logo/48.png",
    "128": "./logo/128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "app/background.js"
    ]
  },
  "permissions": [
    "https://steamcommunity.com/*/*/friends*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://steamcommunity.com/*/*/friends*"
      ],
      "js": [
        "app/xss/friends/index.js",
        "app/xss/friends/actions/button/start.js",
        "app/xss/friends/actions/actions.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*"
  ]
}