VXTwitter URL Modifier

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

VXTwitter URL Modifier क्या है?

VXTwitter URL Modifier NotZaidi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Modifies Twitter URLs to start with 'vx' and copies the modified URL."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में VXTwitter URL Modifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}