HLTV.org Collapse Comments

HLTV.org Collapse Comments

You can now collapse threaded comments.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HLTV.org Collapse Comments",
  "short_name": "HLTV.org Collapse Comments",
  "version": "1.0.0",
  "description": "You can now collapse threaded comments.",
  "content_scripts": [
    {
      "matches": [
        "https://*.hltv.org/*",
        "http://*.hltv.org/*"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_start",
      "js": [
        "js/jquery.js",
        "js/localforage.min.js",
        "js/hltv.js"
      ]
    }
  ],
  "permissions": [
    "https://*.hltv.org/*",
    "http://*.hltv.org/*",
    "storage"
  ],
  "icons": {
    "128": "images/hltv.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "images/hltv.png"
    },
    "default_title": "HLTV.org Collapse Comments"
  }
}