World Cup Hater

World Cup Hater

This extension alows you to hide all football related posts from your timeline.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "World Cup Hater",
  "description": "This extension alows you to hide all football related posts from your timeline.",
  "version": "1.0.4",
  "web_accessible_resources": [
    "img/*.jpg"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://facebook.com/*",
        "https://www.facebook.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery-1.11.0.min.js",
        "js/jquery-migrate-1.2.1.min.js",
        "js/popup.js"
      ]
    }
  ]
}