您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ThreeDaos Reader
// ==UserScript== // @name ThreeDaos // @namespace http://tampermonkey.net/ // @version 2025-09-02 // @description ThreeDaos Reader // @author AngelXex // @match https://threedaos.zdrz.xyz/* // @icon https://threedaos.zdrz.xyz/wp-content/uploads/2024/06/cropped-1-192x192.png // @grant none // ==/UserScript== (function() { 'use strict'; const paddedit = document.getElementsByClassName("readingnav rnavbot"); Array.prototype.forEach.call(paddedit, function(el) { el.remove(); }); const paddedit2 = document.getElementsByClassName("scrollToTop"); Array.prototype.forEach.call(paddedit2, function(el) { el.remove(); }); var temp = document.getElementsByClassName("ts-main-image"); temp[0].addEventListener ( "click", ButtonClickAction, false ); function ButtonClickAction (zEvent) { openFullscreen(); } /* Get the documentElement (<html>) to display the page in fullscreen */ var elem = document.documentElement; /* View in fullscreen */ function openFullscreen() { if (elem.requestFullscreen) { elem.requestFullscreen(); } else if (elem.webkitRequestFullscreen) { /* Safari */ elem.webkitRequestFullscreen(); } else if (elem.msRequestFullscreen) { /* IE11 */ elem.msRequestFullscreen(); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址