NightBot-AutoDJ song-name helper

Make craftwar's obs plugin (http://craftwarblog.blogspot.com/2018/01/obs-plugin-playing-song.html) able to get NightBot-AutoDJ song name.

目前為 2018-01-13 提交的版本,檢視 最新版本

// ==UserScript==
// @author craftwar
// @name NightBot-AutoDJ song-name helper
// @description Make craftwar's obs plugin (http://craftwarblog.blogspot.com/2018/01/obs-plugin-playing-song.html) able to get NightBot-AutoDJ song name.
// @copyright 2018, craftwar (https://craftwarblog.blogspot.com/)
// @license GPL-3.0+; http://www.gnu.org/licenses/gpl-3.0.txt
// @homepageURL https://github.com/craftwar/userscript/tree/master/NightBot-song-name-helper
// @version 0.1.20180113
// @namespace github.com.craftwar
// @match https://beta.nightbot.tv/song_requests
// @grant none
// @run-at document-end
// ==/UserScript==

function sleep(ms) {
  return new Promise(resolve => setTimeout(resolve, ms));
}

sleep(3000).then(() => {
  element = document.querySelector(".current-track > h4:nth-child(1) > strong:nth-child(1)");
  setInterval( ()=> {document.title = element.childNodes[0].wholeText + " - YouTube";}, 1000);
// cross-origin is not allowed, use timer to update

/*
var iframe = document.getElementsByTagName('iframe');
var innerDoc = iframe[0].contentDocument || iframe[0].contentWindow.document;
var videoelement = document.getElementsByTagName('video');
*/
})