Remove twitter login blocker

Remove twitter login blocker

Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Remove twitter login blocker",
  "version": "1.0",
  "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"
      ]
    }
  ]
}