M Clip Twitch
Download Twitch clips with a title in a configurable format and quickly access its VOD
Co to jest M Clip Twitch?
M Clip Twitch to rozszerzenie Chrome opracowane przez furkankus3214, a jego główną funkcją jest „Download Twitch clips with a title in a configurable format and quickly access its VOD”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia M Clip Twitch
Pobierz pliki rozszerzeń M Clip Twitch w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Twitch Clip Downloader With Name and Queue
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jaipghhkfodkjbodidbgnekkkdbagade |
Oficjalny URL | https://chrome.google.com/webstore/detail/m-clip-twitch/jaipghhkfodkjbodidbgnekkkdbagade |
Opis | Download Twitch clips with a title in a configurable format and quickly access its VOD |
Rozmiar pliku | 124 KB |
Liczba instalacji | 85 |
Aktualna Wersja | 1.13.8 |
Ostatnia Aktualizacja | 2021-02-12 |
Data Publikacji | 2021-02-12 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | furkankus3214 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |