Block the twitter feed

Block the twitter feed

Remove the feeds from twitter and just leave the search bar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Block the twitter feed",
  "description": "Remove the feeds from twitter and just leave the search bar",
  "icons": {
    "128": "icon.png"
  },
  "version": "1.0.0",
  "permissions": [
    "activeTab",
    "http://*.twitter.com/*",
    "https://*.twitter.com/*"
  ],
  "browser_action": {
    "default_title": "Remove the twitter feed and trending sections",
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [],
      "matches": [
        "*://twitter.com/home*",
        "*://www.twitter.com/home*",
        "*://www.twitter.com/*",
        "*://www.twitter.com/home",
        "*://twitter.com/*",
        "*://www.twitter.com/home"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}