Twitch Clip Downloader

Easily download Twitch clips!

Cos'è Twitch Clip Downloader?

Twitch Clip Downloader è un'estensione di Chrome sviluppata da https://raven.fo, e la sua funzione principale è "Easily download Twitch clips!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Twitch Clip Downloader

Scarica i file di estensione Twitch Clip Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Twitch Clip Downloader Twitch Clip Downloader
ID klkjnhemebjdikndlpknonjedeefkedk
URL Ufficiale https://chromewebstore.google.com/detail/twitch-clip-downloader/klkjnhemebjdikndlpknonjedeefkedk
Descrizione Easily download Twitch clips!
Dimensione del File 33.7 KB
Conteggio Installazioni 29,579
Versione Corrente 0.1.28
Ultimo Aggiornamento 2022-06-18
Data di Pubblicazione 2020-06-17
Valutazione 3.04/5 Totale 71 Valutazioni
Sviluppatore https://raven.fo
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}