老王磁力广告移出

老王磁力底部广告移出

目前为 2024-12-25 提交的版本。查看 最新版本

// ==UserScript==
// @name         老王磁力广告移出
// @namespace    http://tampermonkey.net/
// @version      1.0.2
// @license      MIT
// @description  老王磁力底部广告移出
// @author       cc
// @match        *://laowanghz.top/*
// @icon         ./favicon.ico
// @grant        none
// ==/UserScript==

(function() {

window.addEventListener(
  'load',
  function () {
    const div = document.querySelectorAll('body>div')
    const advt = div[div.length - 1]
    console.log('advt = ', advt)
    if (advt) advt.remove()

    if (!advt) {
      const advt3 = document.querySelector('#0HMJVO60IEEUR')
      console.log('advt3 = ', advt3)
      advt3.remove()
    }
  },
  false
)

})();