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 |
Eメール | [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\/*" ] } ] } |