Remove twitter login blocker

Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Remove twitter login blocker",
  "version": "1.1",
  "description": "Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.",
  "icons": {
    "16": "icon-small.png",
    "48": "icon-medium.png",
    "96": "icon-big.png",
    "128": "icon-default.png"
  },
  "author": "Benjamin Luka Novak",
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{eaff0804-e221-4baf-8328-be4294d34417}"
    }
  }
}