您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removing Wattpad's force log in page
// ==UserScript== // @name New PLan: Wattpad viewer // @namespace http://tampermonkey.net/ // @version 1.0 // @description Removing Wattpad's force log in page // @author RAVEN // @include https://www.wattpad.com/* // @include http://www.wattpad.com/* // @include https://embed.wattpad.com/ // @include http://embed.wattpad.com/ // @icon https://www.google.com/s2/favicons?sz=64&domain=wattpad.com // @grant none // @license none // ==/UserScript== function wait(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } async function runSixteenTimes() { for (let i = 0; i < 16; i++) { document.body.style.overflow = "visible"; document.querySelectorAll('#modals').forEach(el => el.remove()); document.querySelectorAll('div.uWKBG.kKnZc.UCQAd').forEach(el => el.remove()); document.querySelectorAll('.modal-backdrop.fade.in').forEach(el => el.remove()); console.log(`Run ${i + 1}: overflow set to visible`); if (i < 15) { await wait(200); // Wait 10 seconds between runs, but not after the last one } } } runSixteenTimes();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址