Greasy Fork is available in English.

youtube Title control

Control the navbar of youtube and move the Tile

// ==UserScript==
// @name       youtube Title control
// @namespace    mscststs
// @version      0.1
// @description  Control the navbar of youtube and move the Tile
// @author       mscststs
// @match        http*://www.youtube.com/watch?*
// @grant        none
// @require https://greasyfork.org/scripts/38220-mscststs-tools/code/MSCSTSTS-TOOLS.js?version=249281
// ==/UserScript==

(function() {
    'use strict';
	async function start(){
		let s = await mscststs.wait("#ticker");
		s.innerHTML+=`<style>#masthead-container.ytd-app{
    position:relative !important;
}
#page-manager{
	margin-top:0px !important;
}
</style>`;
	}
	start();

})();