Bring the Twitter Bird Back

Bring the Twitter Bird Back

A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bring the Twitter Bird Back",
  "version": "0.3",
  "author": "Baran Yancı",
  "description": "A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.",
  "host_permissions": [
    "*://*.twitter.com/*",
    "*://*.x.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "images/icons/light16.png",
      "32": "images/icons/light32.png"
    },
    "default_title": "Bring the Twitter Bird Back",
    "theme_icons": [
      {
        "light": "images/icons/light16.png",
        "dark": "images/icons/dark16.png",
        "size": 16
      },
      {
        "light": "images/icons/light32.png",
        "dark": "images/icons/dark32.png",
        "size": 32
      }
    ]
  }
}