FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Was ist FXTwitter copy?
FXTwitter copy ist eine Chrome-Erweiterung, die von DJPiplup entwickelt wurde, und ihr Hauptmerkmal ist "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".
Erweiterungsscreenshots
FXTwitter copy-Erweiterungs-CRX-Datei herunterladen
Laden Sie FXTwitter copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
Offizielle URL | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Beschreibung | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Dateigröße | 8.14 KB |
Installationsanzahl | 77 |
Aktuelle Version | 2.0 |
Letztes Update | 2023-11-27 |
Veröffentlichungsdatum | 2023-10-20 |
Entwickler | DJPiplup |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |