Youtube short to video converter
Convert a Youtube video to a short.
Youtube short to video converterคืออะไร?
Youtube short to video converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://leonardochen.dev และคุณลักษณะหลักของมันคือ "Convert a Youtube video to a short."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube short to video converter
ดาวน์โหลดไฟล์ส่วนขยาย Youtube short to video converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Elevate your experience with YouTube shorts by incorporating essential tools directly into your shorts content. Introducing added buttons that seamlessly toggle between YouTube's shorts and videos, giving you greater control over your viewing journey.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube short to video converter |
ID | ahpfmcbhbecekponcmndgbalgncfelab |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-short-to-video-co/ahpfmcbhbecekponcmndgbalgncfelab |
คำอธิบาย | Convert a Youtube video to a short. |
ขนาดไฟล์ | 111 KB |
จำนวนการติดตั้ง | 137 |
เวอร์ชันปัจจุบัน | 2.0.1 |
อัปเดตครั้งล่าสุด | 2023-08-28 |
วันที่เผยแพร่ | 2023-08-07 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://leonardochen.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube short to video converter", "version": "2.0.1", "description": "Convert a Youtube video to a short.", "author": "[email protected]", "action": { "default_icon": "icons\/convertIcon.png" }, "icons": { "16": "icons\/convertIcon-16x16.png", "48": "icons\/convertIcon-48x48.png", "128": "icons\/convertIcon-128x128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "scripts\/contentVid.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/iconWebCol.png", "icons\/iconVidWhite.png" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "permissions": [ "scripting", "tabs" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+B", "mac": "Command+B" } } } } |