亡命雷区

亡命雷区

  • 主演:艾米·汉莫 安娜贝拉·沃丽丝 汤姆·库伦 朱丽叶特·奥布瑞 杰夫·贝尔 克林特·戴尔 卢卡·佩洛斯 大卫·柯克·特雷勒 
  • 导演:法比奥·古阿廖内,法比奥·瑞希纳洛 
  • 年份:2016
返回顶部
// 自动监听插入的 或 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 });