Twitch Clip Downloader
Simplest way to download clips on Twitch!
什么是Twitch Clip Downloader?
Twitch Clip Downloader是由Takoo开发的Chrome扩展程序,该扩展的主要功能是“Simplest way to download clips on Twitch!”。
扩展截图
下载Twitch Clip Downloader扩展crx文件
下载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\/*" ] } ] } |