YouTube Shorts Volume Control
Allows a convenient slider based UI element for controlling volume in youtube shorts UI
YouTube Shorts Volume Controlคืออะไร?
YouTube Shorts Volume Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Priya และคุณลักษณะหลักของมันคือ "Allows a convenient slider based UI element for controlling volume in youtube shorts UI"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Shorts Volume Control
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Shorts Volume Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension caters to everyone who is searching for a extension to control the volume of youtube shorts in their PC. This functionaility is currently missing on web based UI on laptops and PCs. This extension adds an UI element, as a convenient range slider that helps the user to control the volume of youtube shorts in a fine grained manner. Fixed some small bugs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Shorts Volume Control |
ID | iocnlgcooancaojnpkonjpcocmcjkgle |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle |
คำอธิบาย | Allows a convenient slider based UI element for controlling volume in youtube shorts UI |
ขนาดไฟล์ | 4.57 KB |
จำนวนการติดตั้ง | 68 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2023-11-25 |
วันที่เผยแพร่ | 2023-11-23 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Priya |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Shorts Volume Control", "version": "0.0.3", "description": "Allows a convenient slider based UI element for controlling volume in youtube shorts UI", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "action": { "default_icon": [], "default_title": "Youtube Shorts Vol Control", "default_popup": "popup.html" }, "manifest_version": 3 } |