M Clip Twitch

Download Twitch clips with a title in a configurable format and quickly access its VOD

Cos'è M Clip Twitch?

M Clip Twitch è un'estensione di Chrome sviluppata da furkankus3214, e la sua funzione principale è "Download Twitch clips with a title in a configurable format and quickly access its VOD".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione M Clip Twitch

Scarica i file di estensione M Clip Twitch 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 With Name and Queue                    

Informazioni di Base sull'Estensione

Nome M Clip Twitch M Clip Twitch
ID jaipghhkfodkjbodidbgnekkkdbagade
URL Ufficiale https://chrome.google.com/webstore/detail/m-clip-twitch/jaipghhkfodkjbodidbgnekkkdbagade
Descrizione Download Twitch clips with a title in a configurable format and quickly access its VOD
Dimensione del File 124 KB
Conteggio Installazioni 85
Versione Corrente 1.13.8
Ultimo Aggiornamento 2021-02-12
Data di Pubblicazione 2021-02-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore furkankus3214
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "M Clip Twitch",
    "description": "Download Twitch clips with a title in a configurable format and quickly access its VOD",
    "version": "1.13.8",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "icons": {
        "128": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/moment.js",
            "js\/lang.js",
            "background.js",
            "downloadClip.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/clips.twitch.tv\/*",
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "js-content\/utils.js",
                "js\/lang.js",
                "js-content\/vars.js",
                "js-content\/buttonsUtils.js",
                "js-content\/manageButtons.js",
                "js-content\/manageButtonsList.js",
                "js-content\/init.js"
            ]
        }
    ],
    "commands": {
        "download-clip": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Allows you to download the Twitch clip from its page"
        }
    },
    "permissions": [
        "downloads",
        "storage",
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/*",
        "queue\/queue.html"
    ]
}