YouTube Magic Actions

Centers the Menu to the Bottom of window as sticky and decrease the size

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         	YouTube Magic Actions
// @namespace    	https://greasyfork.org/users/928242
// @version      	1.0
// @description  	Centers the Menu to the Bottom of window as sticky and decrease the size
// @author       	Kamikaze (https://github.com/Kamiikaze)
// @supportURL      https://github.com/Kamiikaze/Tampermonkey/issues
// @match        	https://www.youtube.com/watch?v=*
// @icon         	https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        	none
// @license      	MIT
// ==/UserScript==

function GM_addStyle(css) {
	var head, style;
	head = document.getElementsByTagName('head')[0];
	if (!head) { return; }
	style = document.createElement('style');
	style.type = 'text/css';
	style.innerHTML = css.replace(/;/g, ' !important;');
	head.appendChild(style);
}

GM_addStyle(`
#watch7-content {
    height: 40px;
    width: 700px;
    max-width: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#watch7-content span {
    position: sticky;
    bottom: 0;
}

`);