Toggle Comments for reddit

Toggle Comments for reddit

Show and hide comments directly on the home page of reddit!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Toggle Comments for reddit",
  "short_name": "TCr",
  "description": "Show and hide comments directly on the home page of reddit!",
  "version": "0.0.5",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.reddit.com/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "togglecomments.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "jquery-3.2.1.min.map"
  ],
  "permissions": [
    "*://www.reddit.com/*"
  ]
}