FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Co to jest FXTwitter copy?
FXTwitter copy to rozszerzenie Chrome opracowane przez DJPiplup, a jego główną funkcją jest „Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia FXTwitter copy
Pobierz pliki rozszerzeń FXTwitter copy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
Oficjalny URL | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Opis | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Rozmiar pliku | 8.14 KB |
Liczba instalacji | 77 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2023-11-27 |
Data Publikacji | 2023-10-20 |
Deweloper | DJPiplup |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |