VXTwitter URL Modifier

Modifies Twitter URLs to start with 'vx' and copies the modified URL.

VXTwitter URL Modifierคืออะไร?

VXTwitter URL Modifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย NotZaidi และคุณลักษณะหลักของมันคือ "Modifies Twitter URLs to start with 'vx' and copies the modified URL."

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

screenshot

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

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

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

                        Welcome to VXTwitter URL Modifier, a Chrome extension designed to make it easier to share posts to places like Discord so your friends can easily see your images/videos.

Key Features:

Smart Copy Functionality: Want to share the VXTwitter link? Just hit Ctrl+C! Our extension intelligently copies the modified VXTwitter URL to your clipboard, making sharing and saving links effortless.

Highlight-to-Copy Flexibility: Only want to copy specific text? No problem! Our extension is designed to understand your needs. If you highlight text, Ctrl+C will copy just the text, not the URL. It's all about giving you control and flexibility.

User-Friendly Design: We focus on simplicity and efficiency. There are no complicated settings or configurations. Just install the extension, and it works in the background, ready when you need it.

Secure and Privacy-Friendly: Your privacy matters to us. The extension works locally on your browser without sending data externally, ensuring your browsing habits and data remain private.                    

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

ชื่อ VXTwitter URL Modifier VXTwitter URL Modifier
ID fjphdcobpcafboggpjdimkcbgcbghlfh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vxtwitter-url-modifier/fjphdcobpcafboggpjdimkcbgcbghlfh
คำอธิบาย Modifies Twitter URLs to start with 'vx' and copies the modified URL.
ขนาดไฟล์ 31.37 KB
จำนวนการติดตั้ง 147
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2024-01-31
วันที่เผยแพร่ 2023-12-28
ผู้พัฒนา NotZaidi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ahzaidi/VXTwitter
URL หน้าช่วยเหลือ https://github.com/ahzaidi/VXTwitter
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VXTwitter URL Modifier",
    "version": "1.2",
    "description": "Modifies Twitter URLs to start with 'vx' and copies the modified URL.",
    "permissions": [],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon_16.png",
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    }
}