老王磁力广告移出

老王磁力底部广告移出

// ==UserScript==
// @name         老王磁力广告移出
// @namespace    http://tampermonkey.net/
// @version      2025-03-21
// @description  老王磁力底部广告移出
// @author       cc
// @license      MIT
// @match        *://laowanghz.top/*
// @icon         https://prod.b5.howcdn.com/img/xiaowang/favicon.png
// @grant        none
// ==/UserScript==

(function () {
  window.onload = () => {
    const divs = document.querySelectorAll('body>div')
    const advt = divs[divs.length - 1]
    if (!advt.classList[0].includes('container')) {
      advt.remove()
    }
  }
})()