最后的幸存者

最后的幸存者

  • 主演:海莉·露·理查森 波波·斯图尔特 麦克斯·查尔斯 妮可·福克斯 迈克·韦尔奇 强·格瑞斯 迈克尔·麦斯 丽纳·欧文 Leo Lee 芭芭拉·克兰普顿 迈克尔·麦卡特尼 杰奎琳·爱默森 Casey Adams Sheridan Crist Neal Polister 
  • 导演:托马斯·S·哈默克 
  • 年份:2014
返回顶部
// 自动监听插入的 或 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 });