您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
skippy scary button...
// ==UserScript== // @name Youtube non-patched ad-blocker (instant skip method) // @namespace http://tampermonkey.net/ // @version 1.0 // @description skippy scary button... // @author You // @match *://www.youtube.com/* // @icon https://sun6-20.userapi.com/s/v1/ig2/1JBwSIp_3SU2eWIMWDneyhVV2oDHoPxX5z1v6gcCn6r5pk3f32VPytKPp2dvihTyKCVlRGLhTlNx5SEzp6kJfWE-.jpg?size=984x985&quality=96&crop=111,0,984,985&ava=1 // @grant none // ==/UserScript== (function() { 'use strict'; window.notif = (message, time, icon) => { let div = document.createElement("div"); div.style = "background-color: white; color: black; font-family: monospace; display: flex; justify-content: center; align-items: center; position: absolute; max-width: 400px; left: -420px; top: 20px; border: 1px solid black; border-radius: 10px; z-index: 100000; transition: left 1s cubic-bezier(0.6, 0.59, 0, 0.99) 0s; padding-inline: 20px; padding-block: 8px;"; div.innerHTML = message; document.body.appendChild(div); let img = document.createElement("img"); img.src = icon; img.style = "width: 60px; margin-left: 10px; border: 1px black solid; border-radius: 10px;"; div.appendChild(img); setTimeout(() => { div.style.left = "20px"; setTimeout(() => { div.style.left = "-500px"; setTimeout(() => { div.remove(); }, 1500); }, time); }, 100); }; setInterval(() => { [...document.getElementsByClassName("ytp-ad-skip-button-modern ytp-button")].forEach(button => { button.click(); window.notif("Add blocked !", 3000, "https://sun6-20.userapi.com/s/v1/ig2/1JBwSIp_3SU2eWIMWDneyhVV2oDHoPxX5z1v6gcCn6r5pk3f32VPytKPp2dvihTyKCVlRGLhTlNx5SEzp6kJfWE-.jpg?size=984x985&quality=96&crop=111,0,984,985&ava=1"); }); }, 10); })();