只看二次元欸
// ==UserScript==
// @name 二刺螈好耶!
// @namespace http://tampermonkey.net/
// @include https://audiences.me/torrents.php*
// @version 1.0
// @author lovecaibao
// @license MIT
// @description 只看二次元欸
// ==/UserScript==
hide()
function hide() {
document.querySelector('#torrenttable').querySelectorAll(':scope > tbody > tr').forEach(function hide(node) {
if (!node.querySelector('.tdh')) {
node.setAttribute("hidden", "hidden");
}
});
}