M Clip Twitch

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

O que é M Clip Twitch?

M Clip Twitch é uma extensão do Chrome desenvolvida por furkankus3214, e sua principal característica é "Download Twitch clips with a title in a configurable format and quickly access its VOD".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão M Clip Twitch

Baixe arquivos de extensão M Clip Twitch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Twitch Clip Downloader With Name and Queue                    

Informações Básicas da Extensão

Nome M Clip Twitch M Clip Twitch
ID jaipghhkfodkjbodidbgnekkkdbagade
URL Oficial https://chrome.google.com/webstore/detail/m-clip-twitch/jaipghhkfodkjbodidbgnekkkdbagade
Descrição Download Twitch clips with a title in a configurable format and quickly access its VOD
Tamanho do Arquivo 124 KB
Contagem de Instalações 85
Versão Atual 1.13.8
Última Atualização 2021-02-12
Data de Publicação 2021-02-12
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor furkankus3214
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}