Twitch Clip Downloader

Easily download Twitch clips!

Qu'est-ce que Twitch Clip Downloader ?

Twitch Clip Downloader est une extension Chrome développée par https://raven.fo, et sa fonction principale est "Easily download Twitch clips!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitch Clip Downloader

Téléchargez les fichiers d'extension Twitch Clip Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Twitch Clip Downloader Twitch Clip Downloader
ID klkjnhemebjdikndlpknonjedeefkedk
URL Officiel https://chromewebstore.google.com/detail/twitch-clip-downloader/klkjnhemebjdikndlpknonjedeefkedk
Description Easily download Twitch clips!
Taille du Fichier 33.7 KB
Nombre d'Installations 29,579
Version Actuelle 0.1.28
Dernière Mise à Jour 2022-06-18
Date de Publication 2020-06-17
Évaluation 3.04/5 Total 71 Évaluations
Développeur https://raven.fo
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}