X logo to Twitter Logo

X logo to Twitter Logo

Change X logo to the old Twitter logo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "X logo to Twitter Logo",
  "version": "0.1",
  "manifest_version": 3,
  "description": "Change X logo to the old Twitter logo",
  "icons": {
    "64": "size-64.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}