Disqus Hider

Disqus Hider

Hides the Disqus comment section on a webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ext_title__",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "__MSG_ext_desc__",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "Richard Bruneau",
  "default_locale": "en",
  "permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "src/disqus_hider_styles.css"
      ],
      "js": [
        "src/inject.js"
      ],
      "run_at": "document_end"
    }
  ]
}