Twitch Clip Downloader
Simplest way to download clips on Twitch!
Что такое Twitch Clip Downloader?
Twitch Clip Downloader - это расширение Chrome, разработанное Takoo, и его основная функция - "Simplest way to download clips on Twitch!".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Clip Downloader
Скачайте файлы расширений Twitch Clip Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | Twitch Clip Downloader |
ID | dppnlpgimafbdjdlemjpbbokdeggemag |
Официальный URL | https://chromewebstore.google.com/detail/twitch-clip-downloader/dppnlpgimafbdjdlemjpbbokdeggemag |
Описание | Simplest way to download clips on Twitch! |
Размер файла | 67.9 KB |
Количество установок | 1,156 |
Текущая Версия | 1.8 |
Последнее Обновление | 2023-07-23 |
Дата публикации | 2020-11-04 |
Рейтинг | 4.11/5 Всего 9 оценок |
Разработчик | Takoo |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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\/*" ] } ] } |