M Clip Twitch
Download Twitch clips with a title in a configurable format and quickly access its VOD
Qu'est-ce que M Clip Twitch ?
M Clip Twitch est une extension Chrome développée par furkankus3214, et sa fonction principale est "Download Twitch clips with a title in a configurable format and quickly access its VOD".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension M Clip Twitch
Téléchargez les fichiers d'extension M Clip Twitch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Twitch Clip Downloader With Name and Queue
Informations de Base sur l'Extension
Nom | |
ID | jaipghhkfodkjbodidbgnekkkdbagade |
URL Officiel | https://chrome.google.com/webstore/detail/m-clip-twitch/jaipghhkfodkjbodidbgnekkkdbagade |
Description | Download Twitch clips with a title in a configurable format and quickly access its VOD |
Taille du Fichier | 124 KB |
Nombre d'Installations | 85 |
Version Actuelle | 1.13.8 |
Dernière Mise à Jour | 2021-02-12 |
Date de Publication | 2021-02-12 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | furkankus3214 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |