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 |
Eメール | [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" ] } |