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 zimbico द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Avoid the lag when entering/exiting fullscreen on a YouTube video - by hiding the heavy fluff while transitioning"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Fast Fullscreen Toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } ] } |