NoX

NoX

Return to old logo of Twitter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NoX",
  "version": "2.0",
  "description": "Return to old logo of Twitter",
  "icons": {
    "16": "icons/nox16.png",
    "32": "icons/nox32.png",
    "48": "icons/nox48.png",
    "128": "icons/nox128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ],
      "js": [
        "app.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/twitter.ico"
      ],
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ]
    }
  ]
}