Twitch Clip Downloader

Easily download Twitch clips!

Hvad er Twitch Clip Downloader?

Twitch Clip Downloader er en Chrome-udvidelse udviklet af https://raven.fo, og dens hovedfunktion er "Easily download Twitch clips!".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Twitch Clip Downloader-udvidelses-CRX-fil

Download Twitch Clip Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Twitch Clip Downloader adds a "Download Clip" button to Twitch clip pages. Very useful for editors and anyone else who regularly saves clips.                    

Grundlæggende oplysninger om udvidelsen

Navn Twitch Clip Downloader Twitch Clip Downloader
ID klkjnhemebjdikndlpknonjedeefkedk
Officiel URL https://chromewebstore.google.com/detail/twitch-clip-downloader/klkjnhemebjdikndlpknonjedeefkedk
Beskrivelse Easily download Twitch clips!
Filstørrelse 33.7 KB
Antal Installationer 29,579
Nuværende Version 0.1.28
Senest Opdateret 2022-06-18
Udgivelsesdato 2020-06-17
Bedømmelse 3.04/5 Samlet 71 Bedømmelser
Udvikler https://raven.fo
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Clip Downloader",
    "short_name": "TCD",
    "version": "0.1.28",
    "description": "Easily download Twitch clips!",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "badge.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "downloads"
    ]
}