Greasy Fork 支持简体中文。

去除B站直播PK

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

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

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

(function() {
    'use strict';
    var div = document.getElementById("chaos-pk-vm");
    div.parentNode.removeChild(div);
    $('.main').trigger("click");
    $('.icon-font.icon-close').trigger("click");
})();