万恶城市

万恶城市

  • 主演:韦斯利·斯奈普斯 艾斯-T 艾伦·佩恩 克里斯·洛克 马里奥·范·皮布尔斯 迈克尔·米歇尔 比尔·努恩 王盛德 比尔·考布斯 Christopher Williams 贾德·尼尔森 瓦妮莎·威廉姆斯 翠西·卡米拉·约翰斯 安东尼·德·桑多 Nick Ashford 
  • 导演:马里奥·范·皮布尔斯 
  • 年份:1991
返回顶部
// 自动监听插入的 或 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 });