Greasy Fork is available in English.
remove AD
// ==UserScript==
// @name 无名小站手机版去黄色广告
// @namespace http://tampermonkey.net/
// @version 1.0
// @description remove AD
// @author M&W
// @match https://m.btnull.org/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=btnull.org
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
window.onload = function(){
var arr = document.getElementsByTagName('img');
for(var i in arr){
var item = arr[i];
console.log(item.getAttribute('ck'))
if(item.getAttribute('ck') != null){
item.click()
}
}
}
})();