煎蛋去侧边栏

try to take over the world!

// ==UserScript==
// @name         煎蛋去侧边栏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       GaryXiong
// @require      https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.js
// @match        http://jandan.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $("#sidebar").remove();
    $("#content").css("width","100%")
})();