您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Juste un petit script pour pouvoir skip les vérifications des pubs du site Senpai-Stream
// ==UserScript== // @name Senpai Stream Autopub Validation // @namespace http://tampermonkey.net/ // @version 2024-09-30 // @description Juste un petit script pour pouvoir skip les vérifications des pubs du site Senpai-Stream // @author RedSunShine // @match https://senpai-stream.net/movie/* // @match https://senpai-stream.net/episode/*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=senpai-stream.net // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } async function execute() { const a = document.querySelector("a.whitespace-nowrap"); const b = document.querySelector("div.top-9 > span"); const evt = document.createEvent("MouseEvents"); evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0,true, false, false, false, 0, null); do{ a.dispatchEvent(evt); await sleep(1 * 1000); } while(b != "100%"); } execute(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址