FXTwitter copy

Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.

FXTwitter copy क्या है?

FXTwitter copy DJPiplup द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice."।

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

screenshot

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

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

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

                        The twitter and x links you copy will be automatically converted to fxtwitter or whatever you decide to point them to. As of 2.0, you can also add embed fixers for any sites you want.                    

एक्सटेंशन की मूल जानकारी

नाम FXTwitter copy FXTwitter copy
ID pdkppfndmdlnihpchfdjcglkangjfgea
आधिकारिक URL https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea
विवरण Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
फ़ाइल का आकार 8.14 KB
स्थापना संख्या 77
वर्तमान संस्करण 2.0
अंतिम अपडेट 2023-11-27
प्रकाशन तिथि 2023-10-20
डेवलपर DJPiplup
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FXTwitter copy",
    "description": "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.",
    "version": "2.0",
    "action": {
        "default_popup": "config.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "js": [
                "watcher.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}