VxTwitter URL

Converts twitter.com URLs to VXTwitter URLS when copying them.

What is VxTwitter URL?

VxTwitter URL is a Chrome extension developed by potatoswedish, and its main feature is "Converts twitter.com URLs to VXTwitter URLS when copying them.".

Extension Screenshots

screenshot

Download VxTwitter URL Extension CRX File

Download VxTwitter URL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Usage:
* Share -> Copy Link on a tweet will automatically convert the link to vxtwitter (English only).

Extra features -
* Ctrl + C will convert the current clipboard's twitter/x url to vxtwitter.
* Ctrl + Q will do the same but add || to the beginning and end (for discord spoiler)                    

Extension Basic Information

Name VxTwitter URL VxTwitter URL
ID bdioigkngoclklbmmgegppmmekffpgdh
Official URL https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh
Description Converts twitter.com URLs to VXTwitter URLS when copying them.
File Size 14.5 KB
Installation Count 312
Current Version 1.3
Last Updated 2024-01-12
Publish Date 2023-12-11
Rating 5.00/5 Total 4 Ratings
Developer potatoswedish
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VxTwitter URL",
    "version": "1.3",
    "description": "Converts twitter.com URLs to VXTwitter URLS when copying them.",
    "icons": {
        "96": "icon-96.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/i\/tweetdeck"
            ],
            "js": [
                "appTweetDeck.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ],
            "js": [
                "appTwitter.js"
            ]
        }
    ],
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ]
}