FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Wat is FXTwitter copy?
FXTwitter copy is een Chrome-extensie ontwikkeld door DJPiplup, en de belangrijkste functie is "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".
Extensie Screenshots
Download het CRX-bestand van de extensie FXTwitter copy
Download FXTwitter copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
Officiële URL | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Beschrijving | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Bestandsgrootte | 8.14 KB |
Aantal Installaties | 77 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2023-11-27 |
Publicatiedatum | 2023-10-20 |
Ontwikkelaar | DJPiplup |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |