TypingTube Editor Small YTPlayer

TypingTubeの動画プレイヤーを小さめに表示します。

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         TypingTube Editor Small YTPlayer
// @namespace    https://typing-tube.net/
// @version      3.6
// @description  TypingTubeの動画プレイヤーを小さめに表示します。
// @match        https://typing-tube.net/movie/edit*
// @grant        none
// @license MIT

// ==/UserScript==
let Editor_css = document.createElement('style')
Editor_css.type = 'text/css';
Editor_css.innerHTML =
`
#player{
    width:160px!important;
    height:90px!important;
	margin-right: 21px;
	margin-top: 25px;
}
.title{
display: flex;
flex-direction: row;
}

`
document.getElementsByTagName('HEAD').item(0).appendChild(Editor_css);