Toggle youtube player ui

Press q to toggle youtube player ui for all your video screenshotting needs

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Toggle youtube player ui
// @version      2024-08-17
// @description  Press q to toggle youtube player ui for all your video screenshotting needs
// @author       PersonWhoExists
// @match        https://www.youtube.com/*
// @icon         https://www.youtube.com/s/desktop/c22661fa/img/favicon_144x144.png
// @grant        none
// @namespace https://greasyfork.org/users/1308162
// ==/UserScript==

(function() {
	let state = false
	document.addEventListener("keydown", function(event) {
		if (event.key === "q") {
            const roundedCorners = document.querySelector("#ytd-player")
			const button = document.querySelector(".ytp-chrome-bottom")
			const grad = document.querySelector(".ytp-gradient-bottom")
            const titleBar = document.querySelector(".ytp-title-text")
            const fullScreenControls = document.querySelector(".ytp-chrome-top-buttons")

            roundedCorners.style.transitionProperty = 'border-radius';
            roundedCorners.style.transitionDuration = '0.5s';
            roundedCorners.style.transitionTimingFunction = 'ease';

			if (state == false) {
                roundedCorners.style.borderRadius = "0px"
				button.style.display = "none"
				grad.style.display = "none"
                titleBar.style.display = "none"
                fullScreenControls.style.display = "none"
                state = true
			}
			else if (state == true) {
                roundedCorners.style.borderRadius = "12px"
				button.style.display = ""
				grad.style.display = ""
                titleBar.style.display = ""
                fullScreenControls.style.display = ""
                state = false
			}
		}
	})
})();