Greasy Fork is available in English.
A simple script to skip adblocked note.
// ==UserScript==
// @name ygo-sem屏蔽广告检测
// @namespace http://tampermonkey.net/
// @version 0.1
// @description A simple script to skip adblocked note.
// @author cjh
// @include *://www.ygo-sem.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function() {
$("#addesc").fadeOut(600, function() {
$("#idadkillsho").remove();
});
}, 100);
})();