xify

A chrome extension that modifies twitter links to vxtwitter/fxtwitter on Copy/shortcut Ctrl+Shift+K and copies to clipboard.

xifyคืออะไร?

xify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย venus และคุณลักษณะหลักของมันคือ "A chrome extension that modifies twitter links to vxtwitter/fxtwitter on Copy/shortcut Ctrl+Shift+K and copies to clipboard."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Modifies twitter links to vxtwitter/fxtwitter. Use the keyboard shortcut ctrl+shift+K/cmd+shift+K to copy a twiiter link as vxtwiiter/fxtwitter link.

Why this?
Twitter link embeds in discord are often broken these days and it's annoying to edit each link manually whenever you want to share a twiiter link on discord, so this extension helps you use vxtwitter links to fix embeds with ease.

How to use?
Step1: Install the extension.
Step2: Go to any twitter.com url, and press Ctrl + Shift + K. And that's it. The extension will copy the link as a "vxtwiiter/fxtwitter" link and you can share the link to discord without thinking twice about embed fails.

How to switch between vxtwitter and fxtwitter?
By default the extension uses "vxtwitter/fxtwitter" links. You can enable the option "Enable fxtwitter" from the extension popup to use fxtwitter links instead of vxtwitter.

How to get modified links on copy (Ctrl + C) shortcut directly?
By default, the extension only modifies links on custom shortuct (Ctrl+Shift+K). You can enable the option modify on copy from the extension popup to let the bot use modified links on copy shortuct (Ctrl+C) directly.

Have any issues or need help with using the extension?
Join the discord support server: https://discord.gg/S3hhw9kSKV                    

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

ชื่อ xify xify
ID cihieeigmpndggpojmhjndlgjdmlgaoe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/xify/cihieeigmpndggpojmhjndlgjdmlgaoe
คำอธิบาย A chrome extension that modifies twitter links to vxtwitter/fxtwitter on Copy/shortcut Ctrl+Shift+K and copies to clipboard.
ขนาดไฟล์ 53.83 KB
จำนวนการติดตั้ง 135
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2024-01-21
วันที่เผยแพร่ 2023-10-23
คะแนน 3.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา venus
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/thevenuz/xify
URL หน้าช่วยเหลือ https://discord.gg/S3hhw9kSKV
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "xify",
    "version": "2.1.0",
    "description": "A chrome extension that modifies twitter links to vxtwitter\/fxtwitter on Copy\/shortcut Ctrl+Shift+K and copies to clipboard.",
    "permissions": [
        "clipboardWrite",
        "tabs",
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/x.com\/*"
            ],
            "js": [
                "src\/copy.js"
            ]
        }
    ],
    "action": {
        "default_popup": "src\/popup.html"
    },
    "commands": {
        "modify-link": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Copy to clipboard"
        }
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "*:\/\/twitter.com\/*",
            "*:\/\/x.com\/*"
        ]
    },
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}