Unshift a Broadcaster Name

Add a broadcaster name to the beginning of title

2019-08-11 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

// ==UserScript==
// @name        Unshift a Broadcaster Name
// @namespace   https://greasyfork.org/users/19523
// @description Add a broadcaster name to the beginning of title
// @include     https://tv.so-net.ne.jp/schedule/*
// @version     0.1
// @grant       none
// ==/UserScript==


document.title = document.querySelector('dl.basicTxt > dd:nth-child(3)').firstChild.nodeValue + ' ' + document.title;