您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
mobile reader for manwha latino.
// ==UserScript== // @name manhwa-latino.com // @namespace http://realidadscans.org // @version 2025-08-02 // @description mobile reader for manwha latino. // @author AngelXex // @match https://manhwa-latino.com/manga/* // @icon https://www.google.com/s2/favicons?sz=64&domain=manhwa-latino.com // @grant none // ==/UserScript== (function() { 'use strict'; const paddedit = document.getElementsByClassName("container"); Array.prototype.forEach.call(paddedit, function(el) { el.classList.remove("container"); }); const paddedit2 = document.getElementsByClassName("reading-content"); Array.prototype.forEach.call(paddedit2, function(el) { el.style.padding = "0 0"; }); const temp = document.getElementsByClassName("entry-content"); if (temp.length > 0) { temp[0].addEventListener( "click", ButtonClickAction, false ); } function ButtonClickAction(zEvent) { openFullscreen(); } /* Get the documentElement (<html>) to display the page in fullscreen */ const 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(); } } })();