Auto FxTwitter

Auto FxTwitter

Automatically convert twitter.com or x.com links to fxtwitter.com (or domain of your choice) when sharing a post.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Auto FxTwitter",
  "version": "1.2.1",
  "description": "Automatically convert twitter.com or x.com links to fxtwitter.com (or domain of your choice) when sharing a post.",
  "icons": {
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*",
        "*://x.com/*"
      ],
      "js": [
        "auto-fxtwitter.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/index.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}