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
官方網址 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"
    ]
}