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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}