Greasy Fork is available in English.

去除btbtt广告

try to take over the world!

// ==UserScript==
// @name         去除btbtt广告
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  try to take over the world!
// @author       dogcraft
// @match        https://btbtt.us/
// @include        *//*btbtt*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var dog1=document.getElementsByClassName("width imgs_1");
    document.body.removeChild(dog1[0]);
    //dog1[0].innerHTML='';
    var dog2=document.getElementsByClassName("width");
    dog2[1].innerHTML='';
    document.body.style.backgroundImage='';
    var yy=document.getElementById("wrapper_left_bg");
    document.body.removeChild(yy);
    var zz=document.getElementById("wrapper_right_bg");
    document.body.removeChild(zz);
    // Your code here...
})();