GoodbyeX

GoodbyeX

A simple add-on that removes the new "X" branding from Twitter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "GoodbyeX",
  "version": "1.0.8",
  "description": "A simple extension that removes the new \"X\" branding from Twitter.",
  "manifest_version": 2,
  "icons": {
    "16": "images/favicon-16x16.png",
    "32": "images/favicon-32x32.png",
    "512": "images/logo.png"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://*.twitter.com/*",
        "https://x.com/*"
      ],
      "js": [
        "script.js"
      ],
      "css": [],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "homepage_url": "https://github.com/fnleaksandinfo/GoodbyeX"
}