X to Twitter - x logo changer

X to Twitter - x logo changer

x to bluebird this x logo changer restore old Twitter logo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "vlaex <t.me/vlaex>",
  "name": "X to Twitter - x logo changer",
  "version": "1.0",
  "manifest_version": 3,
  "description": "x to bluebird this x logo changer restore old Twitter logo",
  "icons": {
    "128": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "changeLogo.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": {
      "128": "icons/icon.png"
    },
    "default_popup": "popup.html"
  }
}