Twitch Clip Downloader

Simplest way to download clips on Twitch!

Twitch Clip Downloaderคืออะไร?

Twitch Clip Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Takoo และคุณลักษณะหลักของมันคือ "Simplest way to download clips on Twitch!"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Clip Downloader

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Clip Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Twitch Clip Downloader adds a simple download button on the clips overview page.

It's the easiest way to download Twitch clip without quality less. 
Just click on the download button!

Are you afraid of losing clips you’ve made a long time ago?
On the Clips Manager page, you can download all the clips you selected at the same time.

No need to rename a clip! To save time, the clips will be renamed with the naming convention : "Streamer - Category - Clip title.mp4"

You like it? Please leave a review!                    

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

ชื่อ Twitch Clip Downloader Twitch Clip Downloader
ID dppnlpgimafbdjdlemjpbbokdeggemag
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-clip-downloader/dppnlpgimafbdjdlemjpbbokdeggemag
คำอธิบาย Simplest way to download clips on Twitch!
ขนาดไฟล์ 67.9 KB
จำนวนการติดตั้ง 1,156
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2023-07-23
วันที่เผยแพร่ 2020-11-04
คะแนน 4.11/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Takoo
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Clip Downloader",
    "version": "1.8",
    "description": "Simplest way to download clips on Twitch!",
    "icons": {
        "128": "icons\/128.png",
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png"
    },
    "permissions": [
        "downloads"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-1.4.2.js",
                "dashboard.js"
            ],
            "matches": [
                "https:\/\/dashboard.twitch.tv\/*"
            ]
        },
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "clips.js"
            ],
            "matches": [
                "https:\/\/clips.twitch.tv\/*"
            ]
        },
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "twitch.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ]
        }
    ]
}