Better YouTube Shorts

Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more.

Better YouTube Shortsคืออะไร?

Better YouTube Shorts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Young Shung และคุณลักษณะหลักของมันคือ "Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better YouTube Shorts

ดาวน์โหลดไฟล์ส่วนขยาย Better YouTube Shorts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Control your YouTube shorts just like a normal YouTube video! Features include progress bar, seeking, playback speed, auto skip and more. You can also customize the keybinds to your liking!

List of Features:
- Progress bar at the bottom with time and duration
- Seeking 5 seconds backward and forward with arrow keys
- Auto skip short when current one ends
- Auto skip short with likes below custom threshold (e.g. 500 likes)
- Auto open comment section on each short
- Decrease and increase playback speed with keys U and O
- Revert to normal speed with I or by clicking the speed button
- Control volume with the volume slider or with - and =, mute audio with M
- Mini timestamp and speed above the like button (can be scrolled on!)
- Navigate to previous or next short without animation with W and S
- Go to the next frame or previous frame with . and , while paused
- Customizable keybinds

Fully open-source with MIT License: https://github.com/ynshung/better-yt-shorts                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Better YouTube Shorts Better YouTube Shorts
ID icnidlkdlledahfgejnagmhgaeijokcp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/better-youtube-shorts/icnidlkdlledahfgejnagmhgaeijokcp
คำอธิบาย Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more.
ขนาดไฟล์ 27.83 KB
จำนวนการติดตั้ง 16,533
เวอร์ชันปัจจุบัน 2.7.2
อัปเดตครั้งล่าสุด 2023-08-06
วันที่เผยแพร่ 2022-06-06
คะแนน 4.59/5 รวมทั้งหมด 99 คะแนน
ผู้พัฒนา Young Shung
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ynshung/better-yt-shorts
URL หน้าช่วยเหลือ https://github.com/ynshung/better-yt-shorts/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better YouTube Shorts",
    "description": "Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more.",
    "version": "2.7.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/byts16.png",
        "32": "icons\/byts32.png",
        "48": "icons\/byts48.png",
        "128": "icons\/byts128.png"
    }
}