Twitch Clip Downloader
Simplest way to download clips on Twitch!
O que é Twitch Clip Downloader?
Twitch Clip Downloader é uma extensão do Chrome desenvolvida por Takoo, e sua principal característica é "Simplest way to download clips on Twitch!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Clip Downloader
Baixe arquivos de extensão Twitch Clip Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Twitch Clip Downloader |
ID | dppnlpgimafbdjdlemjpbbokdeggemag |
URL Oficial | https://chromewebstore.google.com/detail/twitch-clip-downloader/dppnlpgimafbdjdlemjpbbokdeggemag |
Descrição | Simplest way to download clips on Twitch! |
Tamanho do Arquivo | 67.9 KB |
Contagem de Instalações | 1,156 |
Versão Atual | 1.8 |
Última Atualização | 2023-07-23 |
Data de Publicação | 2020-11-04 |
Classificação | 4.11/5 Total de 9 Avaliações |
Desenvolvedor | Takoo |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } ] } |