VxTwitter URL

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

VxTwitter URL là gì?

VxTwitter URL là một tiện ích mở rộng Chrome được phát triển bởi potatoswedish, và tính năng chính của nó là "Converts twitter.com URLs to VXTwitter URLS when copying them.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng VxTwitter URL

Tải xuống các tệp mở rộng VxTwitter URL dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VxTwitter URL VxTwitter URL
ID bdioigkngoclklbmmgegppmmekffpgdh
URL Chính Thức https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh
Mô tả Converts twitter.com URLs to VXTwitter URLS when copying them.
Kích Thước Tệp 14.5 KB
Số Lần Cài Đặt 312
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2024-01-12
Ngày Phát Hành 2023-12-11
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển potatoswedish
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}