M Clip Twitch

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

什么是M Clip Twitch?

M Clip Twitch是由furkankus3214开发的Chrome扩展程序,该扩展的主要功能是“Download Twitch clips with a title in a configurable format and quickly access its VOD”。

扩展截图

screenshot

下载M Clip Twitch扩展crx文件

下载M Clip Twitch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Twitch Clip Downloader With Name and Queue                    

扩展基本信息

名称 M Clip Twitch M Clip Twitch
ID jaipghhkfodkjbodidbgnekkkdbagade
官方URL https://chrome.google.com/webstore/detail/m-clip-twitch/jaipghhkfodkjbodidbgnekkkdbagade
简介 Download Twitch clips with a title in a configurable format and quickly access its VOD
文件大小 124 KB
安装次数 85
当前版本 1.13.8
更新时间 2021-02-12
上架时间 2021-02-12
评分 5.00/5 共1次评分
开发者 furkankus3214
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}