FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Co je FXTwitter copy?
FXTwitter copy je rozšíření Chrome vyvinuté DJPiplup, a jeho hlavní funkcí je „Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření FXTwitter copy
Stáhněte si soubory rozšíření FXTwitter copy ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
Oficiální URL | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Popis | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Velikost souboru | 8.14 KB |
Počet instalací | 77 |
Aktuální Verze | 2.0 |
Poslední Aktualizace | 2023-11-27 |
Datum Vydání | 2023-10-20 |
Vývojář | DJPiplup |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |