X/Twitter Enhancer

X/Twitter Enhancer

Download embedded videos, bring back the bird logo, replace tweets and more. Lightweight and totally client-side.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "X/Twitter Enhancer",
  "version": "1.31",
  "description": "Download embedded videos, bring back the bird logo, replace tweets and more. Lightweight and totally client-side.",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "options.html",
    "default_title": "X/Twitter Enhancer - Options",
    "action": {
      "default_popup": "options.html",
      "default_icon": "images/icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*",
        "https://twdown.net/*"
      ],
      "css": [
        "scripts/injectedStyles.css"
      ],
      "js": [
        "content.js",
        "scripts/lotr_quotes.js",
        "scripts/sw_quotes.js",
        "scripts/background.js"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "scripts/*"
      ],
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*"
      ]
    }
  ]
}