No Comments

No Comments

Extension to hide any comments at web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "No Comments",
  "description": "Extension to hide any comments at web pages.",
  "version": "1.0.2",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "No Comments"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.0.3.min.js",
        "functions.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://*.github.com/*"
      ]
    }
  ]
}