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
Eメール [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"
    ]
}