FXTwitter copy

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

Hvad er FXTwitter copy?

FXTwitter copy er en Chrome-udvidelse udviklet af DJPiplup, og dens hovedfunktion er "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".

Udvidelsesskærmbilleder

screenshot

Download FXTwitter copy-udvidelses-CRX-fil

Download FXTwitter copy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn FXTwitter copy FXTwitter copy
ID pdkppfndmdlnihpchfdjcglkangjfgea
Officiel URL https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea
Beskrivelse Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Filstørrelse 8.14 KB
Antal Installationer 77
Nuværende Version 2.0
Senest Opdateret 2023-11-27
Udgivelsesdato 2023-10-20
Udvikler DJPiplup
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}