csdn博主信息侧边栏隐藏-自用 test
当前为
// ==UserScript==
// @name csdn 博主信息侧边栏隐藏
// @namespace
// @description csdn博主信息侧边栏隐藏-自用 test
// @version 1.0.2
// @match *://blog.csdn.net/*
// @require https://code.jquery.com/jquery-3.3.1.min.js
// @namespace
// ==/UserScript==
(function () {
$('aside').remove();
$('.recommend-right').remove();
$('.tool-box').remove();
$('#mainBox').css('margin-left', '15px');
$('main').css('cssText', 'float: left; min-width:840px;')
})();