try to take over the world!
当前为
// ==UserScript==
// @name Tieba Remove Ban Popup
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *://tieba.baidu.com/i/i/*
// @require https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('.dialog_block j_itb_block, dialogJ dialogJfix dialogJshadow').css('display', 'none');
// Your code here...
})();