Twitter video downloader

Download twitter videos in best quality with one simple click

Twitter video downloaderคืออะไร?

Twitter video downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mstfsnc และคุณลักษณะหลักของมันคือ "Download twitter videos in best quality with one simple click"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter video downloader

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter video downloader Twitter video downloader
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
อีเมล [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\/*"
            ]
        }
    ]
}