MyBB Comments Auto Display

MyBB Comments Auto Display

Automagically show the comments section on mybroadband.co.za

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MyBB Comments Auto Display",
  "author": "Bradley Petersen",
  "version": "1.0",
  "description": "Automagically show the comments section on mybroadband.co.za",
  "browser_action": {
    "default_icon": "images/icon32.png"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mybroadband.co.za/news/*"
      ],
      "js": [
        "Core/j.js",
        "Core/click.js"
      ],
      "run_at": "document_end"
    }
  ]
}