Twitch Clip Downloader
Easily download Twitch clips!
Wat is Twitch Clip Downloader?
Twitch Clip Downloader is een Chrome-extensie ontwikkeld door https://raven.fo, en de belangrijkste functie is "Easily download Twitch clips!".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Clip Downloader
Download Twitch Clip Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Twitch Clip Downloader adds a "Download Clip" button to Twitch clip pages. Very useful for editors and anyone else who regularly saves clips. Basisinformatie over de Extensie
| Naam | |
| ID | klkjnhemebjdikndlpknonjedeefkedk |
| Officiële URL | https://chromewebstore.google.com/detail/twitch-clip-downloader/klkjnhemebjdikndlpknonjedeefkedk |
| Beschrijving | Easily download Twitch clips! |
| Bestandsgrootte | 33.7 KB |
| Aantal Installaties | 29,579 |
| Huidige Versie | 0.1.28 |
| Laatst Bijgewerkt | 2022-06-18 |
| Publicatiedatum | 2020-06-17 |
| Beoordeling | 3.04/5 Totaal 71 Beoordelingen |
| Ontwikkelaar | https://raven.fo |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitch Clip Downloader",
"short_name": "TCD",
"version": "0.1.28",
"description": "Easily download Twitch clips!",
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"content.js"
],
"css": [
"badge.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"downloads"
]
} | |