Disable Twitter Feed

Disable Twitter Feed

Removes the timeline on Twitter's homepage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Disable Twitter Feed",
  "version": "1.0",
  "description": "Removes the timeline on Twitter's homepage.",
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "disablefeed.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "48": "icon.png",
    "96": "[email protected]"
  }
}