Twitch Clip Downloader
Simplest way to download clips on Twitch!
Cos'è Twitch Clip Downloader?
Twitch Clip Downloader è un'estensione di Chrome sviluppata da Takoo, e la sua funzione principale è "Simplest way to download clips on Twitch!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Clip Downloader
Scarica i file di estensione Twitch Clip Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Twitch Clip Downloader adds a simple download button on the clips overview page. It's the easiest way to download Twitch clip without quality less. Just click on the download button! Are you afraid of losing clips you’ve made a long time ago? On the Clips Manager page, you can download all the clips you selected at the same time. No need to rename a clip! To save time, the clips will be renamed with the naming convention : "Streamer - Category - Clip title.mp4" You like it? Please leave a review!
Informazioni di Base sull'Estensione
Nome | Twitch Clip Downloader |
ID | dppnlpgimafbdjdlemjpbbokdeggemag |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-clip-downloader/dppnlpgimafbdjdlemjpbbokdeggemag |
Descrizione | Simplest way to download clips on Twitch! |
Dimensione del File | 67.9 KB |
Conteggio Installazioni | 1,156 |
Versione Corrente | 1.8 |
Ultimo Aggiornamento | 2023-07-23 |
Data di Pubblicazione | 2020-11-04 |
Valutazione | 4.11/5 Totale 9 Valutazioni |
Sviluppatore | Takoo |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch Clip Downloader", "version": "1.8", "description": "Simplest way to download clips on Twitch!", "icons": { "128": "icons\/128.png", "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png" }, "permissions": [ "downloads" ], "background": { "service_worker": "background.js" }, "action": [], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "jquery-1.4.2.js", "dashboard.js" ], "matches": [ "https:\/\/dashboard.twitch.tv\/*" ] }, { "css": [ "styles.css" ], "js": [ "clips.js" ], "matches": [ "https:\/\/clips.twitch.tv\/*" ] }, { "css": [ "styles.css" ], "js": [ "twitch.js" ], "matches": [ "https:\/\/www.twitch.tv\/*" ] } ] } |