M Clip Twitch
Download Twitch clips with a title in a configurable format and quickly access its VOD
Was ist M Clip Twitch?
M Clip Twitch ist eine Chrome-Erweiterung, die von furkankus3214 entwickelt wurde, und ihr Hauptmerkmal ist "Download Twitch clips with a title in a configurable format and quickly access its VOD".
Erweiterungsscreenshots
M Clip Twitch-Erweiterungs-CRX-Datei herunterladen
Laden Sie M Clip Twitch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Twitch Clip Downloader With Name and Queue
Grundlegende Informationen zur Erweiterung
Name | |
ID | jaipghhkfodkjbodidbgnekkkdbagade |
Offizielle URL | https://chrome.google.com/webstore/detail/m-clip-twitch/jaipghhkfodkjbodidbgnekkkdbagade |
Beschreibung | Download Twitch clips with a title in a configurable format and quickly access its VOD |
Dateigröße | 124 KB |
Installationsanzahl | 85 |
Aktuelle Version | 1.13.8 |
Letztes Update | 2021-02-12 |
Veröffentlichungsdatum | 2021-02-12 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | furkankus3214 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |