TwitterBird

TwitterBird

Changes the "X" brand back to Twitter

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TwitterBird",
  "description": "Changes the \"X\" brand back to Twitter",
  "short_name": "TwitterBird",
  "manifest_version": 3,
  "version": "1.2",
  "icons": {
    "16": "assets/icon/icon16.png",
    "164": "assets/icon/icon164.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "https://*.x.com/*"
      ],
      "js": [
        "js/Injector.js",
        "js/controllers/SvgLogoInjector.js",
        "js/controllers/FaviconInjector.js",
        "js/controllers/TwitterAccountInjector.js",
        "js/controllers/TitleInjector.js",
        "js/TwitterBird.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "https://*.twitter.com/*",
        "https://*.x.com/*"
      ]
    }
  ]
}