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 |
| 官方網址 | 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 |
| 電子郵箱 | [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\/*"
]
}
]
} | |