// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; var div = document.getElementById("chaos-pk-vm"); div.parentNode.removeChild(div); })();