Greasy Fork

Greasy Fork is available in English.

去除B站直播PK

去除烦人的哔哩哔哩直播pk条

目前为 2019-07-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         去除B站直播PK
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去除烦人的哔哩哔哩直播pk条
// @description  try to take over the world!
// @author       You
// @match        https://live.bilibili.com/*

// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var div = document.getElementById("chaos-pk-vm");
    div.parentNode.removeChild(div);
})();