VxTwitter URL

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

Apa itu VxTwitter URL?

VxTwitter URL adalah ekstensi Chrome yang dikembangkan oleh potatoswedish, dan fitur utamanya adalah "Converts twitter.com URLs to VXTwitter URLS when copying them.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi VxTwitter URL

Unduh file ekstensi VxTwitter URL dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama VxTwitter URL VxTwitter URL
ID bdioigkngoclklbmmgegppmmekffpgdh
URL Resmi https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh
Deskripsi Converts twitter.com URLs to VXTwitter URLS when copying them.
Ukuran File 14.5 KB
Jumlah Instalasi 312
Versi Saat Ini 1.3
Terakhir Diperbarui 2024-01-12
Tanggal Publikasi 2023-12-11
Penilaian 5.00/5 Total 4 Penilaian
Pengembang potatoswedish
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}