xify

xify

A chrome extension that modifies twitter/x.com links to vxtwitter/fxtwitter on Copy/shortcut Ctrl+Shift+K and copies to clipboard.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "xify",
  "version": "2.1.2",
  "description": "A chrome extension that modifies twitter/x.com links to vxtwitter/fxtwitter on Copy/shortcut Ctrl+Shift+K and copies to clipboard.",
  "permissions": [
    "clipboardWrite",
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*",
        "*://x.com/*"
      ],
      "js": [
        "src/copy.js"
      ]
    }
  ],
  "action": {
    "default_popup": "src/popup.html"
  },
  "commands": {
    "modify-link": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      },
      "description": "Copy to clipboard"
    }
  },
  "background": {
    "service_worker": "src/background.js"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://twitter.com/*",
      "*://x.com/*"
    ]
  },
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}