Twitter video downloader
Download twitter videos in best quality with one simple click
Twitter video downloaderとは何ですか?
Twitter video downloaderはmstfsncによって開発されたChromeの拡張機能で、その主な機能は「Download twitter videos in best quality with one simple click」です。
拡張機能のスクリーンショット
Twitter video downloader拡張機能のCRXファイルをダウンロード
Twitter video downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
1 - After installation, you will see a download icon under every tweet, which contains a video.
2 - Simply press download icon.
3 - Video will be downloaded when loading complete. 拡張機能の基本情報
| 名前 | |
| ID | akmdionenlnfcipmdhbhcnkighafmdha |
| 公式URL | https://chromewebstore.google.com/detail/twitter-video-downloader/akmdionenlnfcipmdhbhcnkighafmdha |
| 説明 | Download twitter videos in best quality with one simple click |
| ファイルサイズ | 21.08 KB |
| インストール数 | 33,270 |
| 現在のバージョン | 2.17.1 |
| 最終更新日 | 2024-03-05 |
| 公開日 | 2020-07-22 |
| 評価 | 4.55/5 合計 128 レビュー |
| 開発者 | mstfsnc |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/mstfsnc/twitter-video-downloader |
| ヘルプページのURL | https://github.com/mstfsnc/twitter-video-downloader/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "2.17.1",
"description": "Download twitter videos in best quality with one simple click",
"name": "Twitter video downloader",
"manifest_version": 3,
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*:\/\/*.twitter.com\/*",
"*:\/\/*.x.com\/*"
],
"js": [
"inject.js"
],
"css": [
"content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content.js"
],
"matches": [
"*:\/\/*.twitter.com\/*",
"*:\/\/*.x.com\/*"
]
}
]
} | |