Twitch Clip Downloader
Simplest way to download clips on Twitch!
What is Twitch Clip Downloader?
Twitch Clip Downloader is a Chrome extension developed by Takoo, and its main feature is "Simplest way to download clips on Twitch!".
Extension Screenshots
Download Twitch Clip Downloader Extension CRX File
Download Twitch Clip Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Twitch Clip Downloader |
ID | dppnlpgimafbdjdlemjpbbokdeggemag |
Official URL | https://chromewebstore.google.com/detail/twitch-clip-downloader/dppnlpgimafbdjdlemjpbbokdeggemag |
Description | Simplest way to download clips on Twitch! |
File Size | 67.9 KB |
Installation Count | 1,156 |
Current Version | 1.8 |
Last Updated | 2023-07-23 |
Publish Date | 2020-11-04 |
Rating | 4.11/5 Total 9 Ratings |
Developer | Takoo |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |