9GAG Hider

9GAG Hider

Hide annoying video and long posts on 9GAG

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "9GAG Hider",
  "description": "Hide annoying video and long posts on 9GAG",
  "version": "1.0",
  "background": {
    "scripts": [
      "js/underscore.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://9gag.com/*",
        "http://www.9gag.com/*"
      ],
      "exclude_matches": [
        "http://9gag.com/gag/*",
        "http://www.9gag.com/gag/*"
      ],
      "js": [
        "js/jquery-1.10.2.js",
        "js/hider.js"
      ]
    }
  ]
}