FXTwitter copy
Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
什么是FXTwitter copy?
FXTwitter copy是由DJPiplup开发的Chrome扩展程序,该扩展的主要功能是“Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.”。
扩展截图
下载FXTwitter copy扩展crx文件
下载FXTwitter copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | FXTwitter copy |
ID | pdkppfndmdlnihpchfdjcglkangjfgea |
官方URL | https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea |
简介 | Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice. |
文件大小 | 8.14 KB |
安装次数 | 77 |
当前版本 | 2.0 |
更新时间 | 2023-11-27 |
上架时间 | 2023-10-20 |
开发者 | DJPiplup |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |