VxTwitter URL

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

VxTwitter URLคืออะไร?

VxTwitter URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย potatoswedish และคุณลักษณะหลักของมันคือ "Converts twitter.com URLs to VXTwitter URLS when copying them."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VxTwitter URL

ดาวน์โหลดไฟล์ส่วนขยาย VxTwitter URL ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ VxTwitter URL VxTwitter URL
ID bdioigkngoclklbmmgegppmmekffpgdh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh
คำอธิบาย Converts twitter.com URLs to VXTwitter URLS when copying them.
ขนาดไฟล์ 14.5 KB
จำนวนการติดตั้ง 312
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2024-01-12
วันที่เผยแพร่ 2023-12-11
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา potatoswedish
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}