TI9 DC老师直播间查看实时数据

TI9 DC老师直播间查看实时数据~

Stan na 21-08-2019. Zobacz najnowsza wersja.

// ==UserScript==
// @name         TI9 DC老师直播间查看实时数据
// @description  TI9 DC老师直播间查看实时数据~
// @namespace    https://greasyfork.org/users/129402
// @match        https://live.bilibili.com/blanc/888?*
// @match        https://live.bilibili.com/blanc/13?*
// @match        https://live.bilibili.com/888*
// @grant        unsafeWindow
// @version      1.0.2
// @license      GNU General Public License v3.0 or later
// @compatible   chrome
// @run-at       document-idle
// ==/UserScript==
(() => {
    unsafeWindow.$("body").append(`<div id="liveData" style="transition: all .35s; overflow: hidden; position: fixed; top: 0; z-index: 10000000; width: 150px; height: 40px; left: unset; right: 0px;"><iframe src="https://resource-sec.vpgame.com/project/live/live_v2.html?room_id=13" scrolling="no" style="width: 100%; height: 100%; border: none; overflow: hidden;"></iframe></div>`);
    unsafeWindow.addEventListener("message", ({
        data,
        origin
    }) => {
        if (origin === "https://resource-sec.vpgame.com") {
            $("#liveData").height(data.height).width(data.width);
        }
    }, {
        passive: false,
        capture: true,
    });
})();