Twitch Clip Downloader

Simplest way to download clips on Twitch!

Twitch Clip Downloader là gì?

Twitch Clip Downloader là một tiện ích mở rộng Chrome được phát triển bởi Takoo, và tính năng chính của nó là "Simplest way to download clips on Twitch!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch Clip Downloader

Tải xuống các tệp mở rộng Twitch Clip Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch Clip Downloader Twitch Clip Downloader
ID dppnlpgimafbdjdlemjpbbokdeggemag
URL Chính Thức https://chromewebstore.google.com/detail/twitch-clip-downloader/dppnlpgimafbdjdlemjpbbokdeggemag
Mô tả Simplest way to download clips on Twitch!
Kích Thước Tệp 67.9 KB
Số Lần Cài Đặt 1,156
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2023-07-23
Ngày Phát Hành 2020-11-04
Đánh Giá 4.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Takoo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}