FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Cos'è FXTwitter copy?
FXTwitter copy è un'estensione di Chrome sviluppata da DJPiplup, e la sua funzione principale è "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FXTwitter copy
Scarica i file di estensione FXTwitter copy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
URL Ufficiale | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Descrizione | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Dimensione del File | 8.14 KB |
Conteggio Installazioni | 77 |
Versione Corrente | 2.0 |
Ultimo Aggiornamento | 2023-11-27 |
Data di Pubblicazione | 2023-10-20 |
Sviluppatore | DJPiplup |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |