Favicon Changer for Twitter (Unofficial)

Favicon Changer for Twitter (Unofficial)

Changes the Twitter favicon on your browser tabs to the original Twitter logo.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Favicon Changer for Twitter (Unofficial)",
  "version": "1.1",
  "description": "Changes the Twitter favicon on your browser tabs to the original Twitter logo.",
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ]
}