タブ名の[Typing Tube]を削除して曲名のみ表示

タブ名最適化

// ==UserScript==
// @name         タブ名の[Typing Tube]を削除して曲名のみ表示
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  タブ名最適化
// @author       You
// @match       https://typing-tube.net/movie/show*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
	document.getElementsByTagName('title')[0].textContent = document.getElementsByTagName('title')[0].textContent.replace("Typing Tube ","")
    // Your code here...
})();