Greasy Fork is available in English.

番組情報ページタイトルに局名を表示

テレビ王国の番組情報ページのタイトル(タブ)の冒頭に局名を追加する

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name            Add a Broadcaster Name at the Page Title
// @name:ja         番組情報ページタイトルに局名を表示
// @namespace       https://greasyfork.org/users/19523
// @description     Add a broadcaster name to the beginning of title on TV Kingdom
// @description:ja  テレビ王国の番組情報ページのタイトル(タブ)の冒頭に局名を追加する
// @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;