FXTwitter copy

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

ما هو FXTwitter copy؟

FXTwitter copy هو إضافة Chrome تم تطويرها بواسطة DJPiplup، والميزة الرئيسية لها هي "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة FXTwitter copy

قم بتنزيل ملفات الامتداد FXTwitter copy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}