Twitch Clip Downloader
Easily download Twitch clips!
What is Twitch Clip Downloader?
Twitch Clip Downloader is a Chrome extension developed by https://raven.fo, and its main feature is "Easily download Twitch clips!".
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 "Download Clip" button to Twitch clip pages. Very useful for editors and anyone else who regularly saves clips.
Extension Basic Information
Name | Twitch Clip Downloader |
ID | klkjnhemebjdikndlpknonjedeefkedk |
Official URL | https://chromewebstore.google.com/detail/twitch-clip-downloader/klkjnhemebjdikndlpknonjedeefkedk |
Description | Easily download Twitch clips! |
File Size | 33.7 KB |
Installation Count | 29,579 |
Current Version | 0.1.28 |
Last Updated | 2022-06-18 |
Publish Date | 2020-06-17 |
Rating | 3.04/5 Total 71 Ratings |
Developer | https://raven.fo |
[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", "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" ] } |