Better Shorts Player
Adds video player controls to YouTube Shorts
Better Shorts Playerคืออะไร?
Better Shorts Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joubert Van Zyl และคุณลักษณะหลักของมันคือ "Adds video player controls to YouTube Shorts"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better Shorts Player
ดาวน์โหลดไฟล์ส่วนขยาย Better Shorts Player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video. The controls fade away when not being hovered on as to not be intrusive to the video.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Better Shorts Player |
ID | bagcbccbbigjaicnmlcllplhjdfjeimn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn |
คำอธิบาย | Adds video player controls to YouTube Shorts |
ขนาดไฟล์ | 18.21 KB |
จำนวนการติดตั้ง | 802 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-03-06 |
วันที่เผยแพร่ | 2023-03-06 |
คะแนน | 4.77/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Joubert Van Zyl |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Shorts Player", "description": "Adds video player controls to YouTube Shorts", "manifest_version": 3, "version": "1.0.0", "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "assets\/pause.png", "assets\/play.png", "assets\/muted.png", "assets\/unmuted.png" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |