YouTube Fast Fullscreen Toggle

Avoid the lag when entering/exiting fullscreen on a YouTube video - by hiding the heavy fluff while transitioning

YouTube Fast Fullscreen Toggleคืออะไร?

YouTube Fast Fullscreen Toggle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zimbico และคุณลักษณะหลักของมันคือ "Avoid the lag when entering/exiting fullscreen on a YouTube video - by hiding the heavy fluff while transitioning"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Fast Fullscreen Toggle

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

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

                        There's an annoying lag period when entering/exiting fullscreen on a YouTube video. On my machine, it's normally ~2 seconds; but with a large playlist expanded, it gets up to ~3 seconds. This extension reduces the transition time to almost nothing.

Supported fullscreen transitions:

- Clicking the fullscreen button
- Pressing the F key
- Double-clicking the video

Unsupported fullscreen transitions (still slow):

- Escape
- F11

Note that Firefox doesn't seem to have the same issue as Chrome; so in Firefox the improvement is barely noticeable.

In Vivaldi, there is unfortunately an intermediate step in the fullscreen transition, which I can't seem to do anything to avoid. It appears to be due to the toolbars being hidden/shown at a different moment to when the browser actually enters/leaves fullscreen.

Technical detail:

This bug's been present for years now, and I got so sick of it that I spent one night experimenting to find a way to avoid it - and I found one! The extra HTML content on the page (playlist, recommendations, comments, description, likes, etc.) is pretty heavy, and when you toggle fullscreen, YouTube moves it around in the DOM, which ends up incuring a fair bit of processing. I've worked out that it's significantly faster to hide that extra content before transitioning, then display it again afterwards once it's reached its new position.                    

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

ชื่อ YouTube Fast Fullscreen Toggle YouTube Fast Fullscreen Toggle
ID dggbkbndbcaknaeobfieifmdcncmpaba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-fast-fullscreen-t/dggbkbndbcaknaeobfieifmdcncmpaba
คำอธิบาย Avoid the lag when entering/exiting fullscreen on a YouTube video - by hiding the heavy fluff while transitioning
ขนาดไฟล์ 21.1 KB
จำนวนการติดตั้ง 2,485
เวอร์ชันปัจจุบัน 2.9.0
อัปเดตครั้งล่าสุด 2023-10-20
วันที่เผยแพร่ 2021-02-14
คะแนน 4.67/5 รวมทั้งหมด 73 คะแนน
ผู้พัฒนา zimbico
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ZimbiX/youtube-fast-fullscreen-toggle
URL หน้าช่วยเหลือ https://github.com/ZimbiX/youtube-fast-fullscreen-toggle/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Fast Fullscreen Toggle",
    "description": "Avoid the lag when entering\/exiting fullscreen on a YouTube video - by hiding the heavy fluff while transitioning",
    "version": "2.9.0",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}