ShutUpHLTV

ShutUpHLTV

Silences some annoying ads on the site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ShutUpHLTV",
  "version": "1.0.4",
  "manifest_version": 2,
  "description": "Silences some annoying ads on the site",
  "homepage_url": "http://github.com/ncla/ShutUpHLTV",
  "permissions": [
    "*://*.hltv.org/*",
    "webRequest",
    "webRequestBlocking",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.hltv.org/*"
      ],
      "js": [
        "vendors/jquery/jquery-2.1.4.min.js",
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ]
}