Comment Remover

Comment Remover

Removes annoying comments from the interwebs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Comment Remover",
  "short_name": "CMT REMR",
  "author": "Drake Panzer",
  "homepage_url": "http://dpanzer.net",
  "description": "Removes annoying comments from the interwebs.",
  "version": "0.9.1",
  "icons": {
    "16": "dist/image/icons/icon16.png",
    "48": "dist/image/icons/icon48.png",
    "128": "dist/image/icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "http://*/*",
    "https://*/*",
    "webNavigation",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/js/content.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "dist/js/content.js"
  ],
  "options_page": "dist/options.html",
  "background": {
    "scripts": [
      "/dist/js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "dist/popup.html"
  },
  "offline_enabled": true
}