Twitter Sports Filter

Twitter Sports Filter

Hides NFL, NBA, MLB and MLS tweets from your twitter feed. Made for @pmarca in return for the amazing stuff he writes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitter Sports Filter",
  "description": "Hides NFL, NBA, MLB and MLS tweets from your twitter feed. Made for @pmarca in return for the amazing stuff he writes.",
  "author": "Gui Carvalho (@guimonz)",
  "homepage_url": "https://www.twitter.com/guimonz",
  "version": "1.0.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "https://twitter.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*"
      ],
      "js": [
        "jquery.js",
        "popup.js"
      ]
    }
  ]
}