Greasy Fork

qq空间去广告

qq空间去广告哈哈

// ==UserScript==
// @name         qq空间去广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  qq空间去广告哈哈
// @author       You
// @match        https://user.qzone.qq.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    setInterval(()=>{
    let ads = document.querySelectorAll(".f-single-biz");
    for(let ad of ads){
        ad.remove();
    }
    },500)
    // Your code here...
})();