FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Vad är FXTwitter copy?
FXTwitter copy är en Chrome-tillägg utvecklad av DJPiplup, och dess huvudfunktion är "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".
Tilläggsskärmbilder
Ladda ner FXTwitter copy-förlängningens CRX-fil
Ladda ner FXTwitter copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
Officiell webbadress | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Beskrivning | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Filstorlek | 8.14 KB |
Antal Installationer | 77 |
Aktuell Version | 2.0 |
Senast Uppdaterad | 2023-11-27 |
Publiceringsdatum | 2023-10-20 |
Utvecklare | DJPiplup |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |