LoungeDestroyer

LoungeDestroyer

Improves the experience of CS:GO Lounge and DOTA2 Lounge

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LoungeDestroyer",
  "version": "0.9.5.7",
  "manifest_version": 2,
  "description": "Improves the experience of CS:GO Lounge and DOTA2 Lounge",
  "homepage_url": "http://github.com/ncla/LoungeDestroyer",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "node_modules/jquery/dist/jquery.min.js",
      "lib/js/css-lib.js",
      "app/helpers.js",
      "app/user.js",
      "app/match.js",
      "app/bg/background.js",
      "app/bg/bet.js",
      "app/bg/themes.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/32x32.png",
    "default_title": "LoungeDestroyer"
  },
  "options_page": "settings/index.html",
  "permissions": [
    "notifications",
    "*://csgolounge.com/*",
    "*://steamcommunity.com/*",
    "*://dota2lounge.com/*",
    "*://api.ncla.me/*",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "alarms",
    "unlimitedStorage",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://csgolounge.com/*",
        "*://dota2lounge.com/*"
      ],
      "js": [
        "node_modules/jquery/dist/jquery.min.js",
        "node_modules/dompurify/src/purify.js",
        "lib/js/jquery-ui.min.js",
        "node_modules/moment/min/moment.min.js",
        "node_modules/moment-timezone/builds/moment-timezone-with-data.min.js",
        "node_modules/jstz/dist/jstz.min.js",
        "lib/js/ajaxq.js",
        "app/helpers.js",
        "app/user.js",
        "app/match.js",
        "app/items.js",
        "app/inventory.js",
        "app/bet.js",
        "app/queue.js",
        "app/trades.js",
        "app/inject.js"
      ],
      "css": [
        "app/css/inject.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "icons/32x32.png"
  ]
}