Disable Instagram Feed

Removes the news feed from the web-version of Instagram so you don't get distracted, while allowing you to check messages / notifications still.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "Removes Feed from Instagram.",
  "manifest_version": 2,
  "name": "Disable Instagram Feed",
  "version": "1.0",
  "author": "Ashwin Mathews",
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}