FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Qu'est-ce que FXTwitter copy ?
FXTwitter copy est une extension Chrome développée par DJPiplup, et sa fonction principale est "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension FXTwitter copy
Téléchargez les fichiers d'extension FXTwitter copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
URL Officiel | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Description | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Taille du Fichier | 8.14 KB |
Nombre d'Installations | 77 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2023-11-27 |
Date de Publication | 2023-10-20 |
Développeur | DJPiplup |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |