X Copy Replacer

X Copy Replacer

Replaces the default base URI of an x.com link with one of four embed fixer URIs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "xToFx",
  "author": "Kiwi Soup",
  "version": "1.0.3",
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.x.com/*",
        "*://*.twitter.com/*"
      ],
      "js": [
        "copyReplacer.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "optionsPages/quick-options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}