澳洲同城去广告

去掉澳洲同城的垃圾广告!

// ==UserScript==
// @name         澳洲同城去广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去掉澳洲同城的垃圾广告!
// @author       小当家
// @match        https://www.iyingshi9.tv/*
// @grant        none
// @require http://code.jquery.com/jquery-3.4.1.min.js
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    $("#ads").remove()
         $("#ads1").remove()
         $("#ads2").remove()
         $("#clickdiv").remove()
         console.log("ads hidden")




})();