BettrComments

BettrComments

An extension which enhances the comment section of YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BettrComments",
  "version": "1.2",
  "description": "An extension which enhances the comment section of YouTube.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "19.png",
    "default_title": "BettrComments is enabled on this page."
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "tabs",
    "http://*.youtube.com/"
  ],
  "manifest_version": 2
}