Greasy Fork is available in English.
Remove blank quotations from adnmb
当前为
// ==UserScript==
// @name Remove Brainless
// @namespace https://adnmb2.com/
// @version 0.2.1
// @description Remove blank quotations from adnmb
// @author FBTo3is
// @match https://adnmb2.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
"use strict";
var htmlCollection = document.getElementsByClassName("h-threads-content");
var array = [].slice.call(htmlCollection);
for (var i = 0; i < array.length; i++) {
if ((array[i].textContent.includes(">>No.")) && (array[i].textContent.trim().length == 13)) {
array[i].parentElement.parentElement.remove();
}
}
})();