Greasy Fork is available in English.
hj dic remove ad 沪江小D 广告去除工具
当前为
// ==UserScript==
// @name hj remove ad 沪江小D 广告去除工具
// @namespace http://github.com/nejidev
// @version 0.2
// @description hj dic remove ad 沪江小D 广告去除工具
// @author nejidev
// @match https://dict.hjenglish.com/*
// @grant none
// @require http://code.jquery.com/jquery-3.4.1.min.js
// ==/UserScript==
(function() {
'use strict';
function div_remove(){
$(".ad").hide();
$("main").nextAll().hide();
$("div").each(function(){
if("fixed" == $(this).css("position") && ! $(this).hasClass("rocket"))
{
$(this).hide();
}
});
}
setTimeout(div_remove, 200);
})();