M Clip Twitch
Download Twitch clips with a title in a configurable format and quickly access its VOD
M Clip Twitchคืออะไร?
M Clip Twitch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย furkankus3214 และคุณลักษณะหลักของมันคือ "Download Twitch clips with a title in a configurable format and quickly access its VOD"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย M Clip Twitch
ดาวน์โหลดไฟล์ส่วนขยาย M Clip Twitch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Twitch Clip Downloader With Name and Queue
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jaipghhkfodkjbodidbgnekkkdbagade |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/m-clip-twitch/jaipghhkfodkjbodidbgnekkkdbagade |
คำอธิบาย | Download Twitch clips with a title in a configurable format and quickly access its VOD |
ขนาดไฟล์ | 124 KB |
จำนวนการติดตั้ง | 85 |
เวอร์ชันปัจจุบัน | 1.13.8 |
อัปเดตครั้งล่าสุด | 2021-02-12 |
วันที่เผยแพร่ | 2021-02-12 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | furkankus3214 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "M Clip Twitch", "description": "Download Twitch clips with a title in a configurable format and quickly access its VOD", "version": "1.13.8", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "browser_action": { "default_icon": "images\/icon.png" }, "icons": { "128": "images\/icon.png" }, "background": { "scripts": [ "js\/moment.js", "js\/lang.js", "background.js", "downloadClip.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/clips.twitch.tv\/*", "https:\/\/www.twitch.tv\/*" ], "js": [ "js-content\/utils.js", "js\/lang.js", "js-content\/vars.js", "js-content\/buttonsUtils.js", "js-content\/manageButtons.js", "js-content\/manageButtonsList.js", "js-content\/init.js" ] } ], "commands": { "download-clip": { "suggested_key": { "default": "Ctrl+Shift+H", "mac": "Command+Shift+H" }, "description": "Allows you to download the Twitch clip from its page" } }, "permissions": [ "downloads", "storage", "activeTab" ], "web_accessible_resources": [ "images\/*", "queue\/queue.html" ] } |