VxTwitter URL
Converts twitter.com URLs to VXTwitter URLS when copying them.
什么是VxTwitter URL?
VxTwitter URL是由potatoswedish开发的Chrome扩展程序,该扩展的主要功能是“Converts twitter.com URLs to VXTwitter URLS when copying them.”。
扩展截图
下载VxTwitter URL扩展crx文件
下载VxTwitter URL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Usage: * Share -> Copy Link on a tweet will automatically convert the link to vxtwitter (English only). Extra features - * Ctrl + C will convert the current clipboard's twitter/x url to vxtwitter. * Ctrl + Q will do the same but add || to the beginning and end (for discord spoiler)
扩展基本信息
名称 | VxTwitter URL |
ID | bdioigkngoclklbmmgegppmmekffpgdh |
官方URL | https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh |
简介 | Converts twitter.com URLs to VXTwitter URLS when copying them. |
文件大小 | 14.5 KB |
安装次数 | 312 |
当前版本 | 1.3 |
更新时间 | 2024-01-12 |
上架时间 | 2023-12-11 |
评分 | 5.00/5 共4次评分 |
开发者 | potatoswedish |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "VxTwitter URL", "version": "1.3", "description": "Converts twitter.com URLs to VXTwitter URLS when copying them.", "icons": { "96": "icon-96.png", "48": "icon-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/i\/tweetdeck" ], "js": [ "appTweetDeck.js" ] }, { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.x.com\/*" ], "js": [ "appTwitter.js" ] } ], "permissions": [ "clipboardRead", "clipboardWrite" ] } |