计时器掌控者|视频广告跳过|视频广告加速器

控制网页计时器速度|加速跳过页面计时广告|视频快进(慢放)|跳过广告|支持几乎所有网页.

< Feedback on 计时器掌控者|视频广告跳过|视频广告加速器

Review: Good - script works

§
Posted: 09.08.2024

谷歌浏览器youtube视频加速用不了

§
Posted: 12.08.2024

确实 估计平时天天跳过被发现了

§
Posted: 14.08.2024

我也发现这个问题,自己改改吧,谷歌浏览器按f12发现了报错This document requires 'TrustedHTML' assignment

照着这个回答里面的内容改 https://stackoverflow.com/questions/61964265/getting-error-this-document-requires-trustedhtml-assignment-in-chrome

§
Posted: 19.08.2024

代码 80 行:
node.innerHTML = html;
改为
node.innerHTML = trustedTypes.createPolicy("forceInner", {createHTML: (to_escape) => to_escape}).createHTML(html);

代码 657,658
(oldNode[0] || {}).innerHTML = 'x' + displayNum;
(oldNode1[0] || {}).innerHTML = 'x' + displayNum;
改为:
(oldNode[0] || {}).innerHTML = trustedTypes.createPolicy("forceInner", {createHTML: (to_escape) => to_escape}).createHTML('x' + displayNum);
(oldNode1[0] || {}).innerHTML = trustedTypes.createPolicy("forceInner", {createHTML: (to_escape) => to_escape}).createHTML('x' + displayNum);

Post reply

Sign in to post a reply.