FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
O que é FXTwitter copy?
FXTwitter copy é uma extensão do Chrome desenvolvida por DJPiplup, e sua principal característica é "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão FXTwitter copy
Baixe arquivos de extensão FXTwitter copy no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
URL Oficial | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
Descrição | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
Tamanho do Arquivo | 8.14 KB |
Contagem de Instalações | 77 |
Versão Atual | 2.0 |
Última Atualização | 2023-11-27 |
Data de Publicação | 2023-10-20 |
Desenvolvedor | DJPiplup |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |