Twitch Clip Downloader

Simplest way to download clips on Twitch!

什麼是Twitch Clip Downloader?

Twitch Clip Downloader是由Takoo開發的Chrome擴展程式,該擴展的主要功能是“Simplest way to download clips on Twitch!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Twitch Clip Downloader擴展crx文件

下載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
官方網址 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\/*"
            ]
        }
    ]
}