HideNotch

QuitarNotch

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         HideNotch
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @run-at       document-end
// @version      0.0.3
// @description  QuitarNotch
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function () {
    const timeOuts = [100, 200, 300, 500];
    const videos = document.getElementsByTagName('video');
    const isRemoteDesktop = location.href.includes('remotedesktop.google.com');

    //***** VIEWPORT *****
    if (!document.querySelector('meta[name="viewport"]')) {
        const meta = document.createElement('meta');
        meta.name = 'viewport';
        meta.content = 'width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=no';
        document.head.appendChild(meta);
    }

    const style = document.createElement('style');
    style.textContent = `
        .fillVideoCSS {
            top: 0 !important;
            left: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            object-fit: fill !important;
            position: fixed !important;
        }
    `;
    document.head.appendChild(style);

    //***** FULLSCREEN VIDEOS *****
    function applyFullscreenVideos() {
        for (let video of videos) {
            video.classList.remove('fillVideoCSS');
            video.classList.add('fillVideoCSS');
        }

        const firstVideo = videos[0];
        if (firstVideo && firstVideo.videoWidth > firstVideo.videoHeight && screen.orientation?.lock) {
            screen.orientation.lock('landscape').catch(() => {});
        }
    }

    function removeFullscreenVideos() {
        for (let video of videos) {
            video.classList.remove('fillVideoCSS');
        }
    }

    document.addEventListener('fullscreenchange', () => {
        if (document.fullscreenElement) {
            timeOuts.forEach(timeout => setTimeout(applyFullscreenVideos, timeout));
        } else {
            removeFullscreenVideos();
        }
        console.clear();
    });

    //***** REMOTE DESKTOP WAKE LOCK *****
    if (isRemoteDesktop) {
        let wakeLock = null;

        async function requestWakeLock() {
            try {
                if ('wakeLock' in navigator) {
                    wakeLock = await navigator.wakeLock.request('screen');
                    wakeLock.addEventListener('release', () => {
                        if (document.visibilityState === 'visible') requestWakeLock();
                    });
                }
            } catch (e) {
                console.warn('No se pudo activar wake lock:', e);
            }
        }

        requestWakeLock();

        document.addEventListener('visibilitychange', () => {
            if (document.visibilityState === 'visible') requestWakeLock();
        });
    }

    //***** DISEÑO *****
    let el;
    if ((el = document.getElementById('speedbump'))) el.remove();
    if ((el = document.getElementById('views'))) el.style.top = '0px';
})();