// ==UserScript== // @name JB51 Reformater // @namespace http://www.jb51.net/ // @version 0.1 // @description hide everything except author information and main content. // @author Mianjune Hong // @license GPL version 3 // @match *://www.jb51.net/article/*.htm* // @grant none // @run-at document-end // @downloadURL https://update.greasyfork.icu/scripts/370326/JB51%20Reformater.user.js // @updateURL https://update.greasyfork.icu/scripts/370326/JB51%20Reformater.meta.js // ==/UserScript== (function() { 'use strict'; // Your code here... var content = $('div.article-content'); $('head').append($('')).append($('body link')); $('body').remove(); $('html').append($('
').append($('').append(content))); })();