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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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