Redditor-B-Gone

Redditor-B-Gone

Hides the comments on YouTube videos from Redditor trolls.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Redditor-B-Gone",
  "description": "Hides the comments on YouTube videos from Redditor trolls.",
  "version": "1.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://plus.googleapis.com/*",
        "https://apis.google.com/*"
      ],
      "js": [
        "redditor-b-gone.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png",
    "256": "icon-256.png"
  }
}