Greasy Fork is available in English.
Centers images and hides scrollbar and right panel
当前为
// ==UserScript==
// @name MangaDexCentered
// @namespace MangaDexCentered
// @version 1.0
// @description Centers images and hides scrollbar and right panel
// @author Owyn
// @match https://mangadex.com/chapter/*
// @match https://mangadex.org/chapter/*
// @run-at document-end
// ==/UserScript==
let i = setInterval(dojob, 100);
function dojob()
{
let img = document.querySelector("img.noselect");
if(img && img.naturalWidth) // loaded
{
document.querySelector(".reader-controls-wrapper").remove();
document.querySelector(".reader-main").classList.remove("reader-main");
document.documentElement.style.overflow = "hidden"
document.body.style = "margin-right: -50px; padding-right: 50px; overflow-y: scroll; height: " +window.innerHeight+ "px;";
clearInterval(i):
}
}