FXTwitter copy

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

Apa itu FXTwitter copy?

FXTwitter copy adalah ekstensi Chrome yang dikembangkan oleh DJPiplup, dan fitur utamanya adalah "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi FXTwitter copy

Unduh file ekstensi FXTwitter copy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama FXTwitter copy FXTwitter copy
ID pdkppfndmdlnihpchfdjcglkangjfgea
URL Resmi https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea
Deskripsi Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Ukuran File 8.14 KB
Jumlah Instalasi 77
Versi Saat Ini 2.0
Terakhir Diperbarui 2023-11-27
Tanggal Publikasi 2023-10-20
Pengembang DJPiplup
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}