Greasy Fork is available in English.
去掉51脚本网站的一些广告
// ==UserScript==
// @name 51脚本网站去广告
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 去掉51脚本网站的一些广告
// @author You
// @match *://www.jb51.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var host = window.location.host;
//var host2=document.domain;
console.log(host);
//console.log(host2);
$('.pt10.clearfix').remove();
$('.lbd').remove();
$('div#pic_container').remove();
$('.r300').remove();
$('.lbd_bot.clearfix').remove();
$('.logor').remove();
$('.logom').remove();
$('.jb51ewm').remove();
$('.sidebox-recomm').remove();
})();