LOT INVENTORY STEAM

LOT INVENTORY STEAM

LIS is your assistant in the Steam world, with an automatic sale mode for items.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_chrome_extension_name__",
  "short_name": "__MSG_chrome_extension_short_name__",
  "version": "1.0.6",
  "description": "__MSG_chrome_extension_description__",
  "author": "listeam.co",
  "default_locale": "en",
  "web_accessible_resources": [
    "_locales/*",
    "img/*",
    "js/*",
    "css/*"
  ],
  "icons": {
    "16": "img/logo-lg16.png",
    "48": "img/logo-lg48.png",
    "128": "img/logo-lg.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/logo-lg16.png",
      "48": "img/logo-lg48.png",
      "128": "img/logo-lg.png"
    },
    "default_popup": "html/default_popup.html",
    "default_title": "LIS"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "html/settings.html"
  },
  "permissions": [
    "notifications",
    "alarms",
    "storage",
    "cookies",
    "background",
    "webRequest",
    "webRequestBlocking",
    "https://steamcommunity.com/*",
    "https://api.steampowered.com/*",
    "https://skinkeen.ru/*"
  ],
  "content_scripts": [
    {
      "css": [
        "css/profile.css"
      ],
      "js": [
        "js/profile.js"
      ],
      "matches": [
        "https://steamcommunity.com/profiles/*",
        "https://steamcommunity.com/id/*"
      ],
      "run_at": "document_end"
    },
    {
      "css": [
        "css/inventory.css"
      ],
      "js": [
        "js/inventory.js"
      ],
      "matches": [
        "https://steamcommunity.com/profiles/*/inventory/",
        "https://steamcommunity.com/id/*/inventory/"
      ],
      "run_at": "document_end"
    }
  ]
}