M Clip Twitch
Download Twitch clips with a title in a configurable format and quickly access its VOD
Что такое M Clip Twitch?
M Clip Twitch - это расширение Chrome, разработанное furkankus3214, и его основная функция - "Download Twitch clips with a title in a configurable format and quickly access its VOD".
Снимки экрана расширения
Скачать файл CRX расширения M Clip Twitch
Скачайте файлы расширений M Clip Twitch в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Twitch Clip Downloader With Name and Queue
Основная информация о расширении
Название | |
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" ] } |