Twitch Clip Downloader

Simplest way to download clips on Twitch!

Vad är Twitch Clip Downloader?

Twitch Clip Downloader är en Chrome-tillägg utvecklad av Takoo, och dess huvudfunktion är "Simplest way to download clips on Twitch!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Twitch Clip Downloader-förlängningens CRX-fil

Ladda ner Twitch Clip Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Twitch Clip Downloader Twitch Clip Downloader
ID dppnlpgimafbdjdlemjpbbokdeggemag
Officiell webbadress https://chromewebstore.google.com/detail/twitch-clip-downloader/dppnlpgimafbdjdlemjpbbokdeggemag
Beskrivning Simplest way to download clips on Twitch!
Filstorlek 67.9 KB
Antal Installationer 1,156
Aktuell Version 1.8
Senast Uppdaterad 2023-07-23
Publiceringsdatum 2020-11-04
Betyg 4.11/5 Totalt 9 Betyg
Utvecklare Takoo
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
            ]
        }
    ]
}