Greasy Fork is available in English.
Moves the controls under the video and makes the UI look like it was before august 2015
This user-script is based on my user-style on userstyles.org (Youtube Controls Under Player). Sadly enough a user-style is not going to cut it to cleanup the garbage Youtube has made (again). The main problem was that the time did not update when not hovering over the controls. This script solves that by adding an interval that calls the onmousemove event of the controls.
To customize the script a little, I've added a few checkboxes to the playback settings page on YouTube, and to url's with the word "ui_fix_options" in them.
https://www.youtube.com/account_playback
https://www.youtube.com/ui_fix_options
https://www.youtube.com/embed/ui_fix_options
https://www.youtube-nocookie.com/embed/ui_fix_options
https://youtube.googleapis.com/embed/ui_fix_options
Note that the settings are separate for the three different domains (www.youtube.com, www.youtube-nocookie.com, and youtube.googleapis.com). The settings may also be cleared by the browser, and will not carry over to private/incognito mode.
If you do want the settings to carry over, use the "Export Settings" button in the settings page. A userscript will be generated based on the current settings, install this, and the settings will always be set.
If for some reason you need to check if this script is active (for compatibility with another script for example), you can check for the "yt-ui-fix" class on the body element, or look for a script tag with YoutubeNewUIFix-Style as the id.
if (document.body.classList.contains("yt-ui-fix"))
{
alert("YouTube UI Fix is present 1");
}
// or using the style element
if (document.getElementById("YoutubeNewUIFix-Style") !== null)
{
alert("YouTube UI Fix is present 2");
}
/* in CSS */
.yt-ui-fix
{
/* background is red if YouTube UI Fix is present */
background-color: red;
}
Features:
Things still to do:
Things I can't do (if you know how to do any of these things, let me know):
Incompatibilities