Removes the empty space on shitty manga sites, also makes real zooming actually work
当前为
// ==UserScript==
// @name Remove spaces at the sides
// @namespace https://greasyfork.org/en/users/434434-lagradost
// @match https://isekaiscan.com/manga/*
// @match https://manhuas.net/manhua/*
// @match https://toonily.com/webtoon/*
// @match https://mangazuki.online/mangas/*
// @grant none
// @version 1.0
// @author Ost
// @description Removes the empty space on shitty manga sites, also makes real zooming actually work
// ==/UserScript==
img = document.getElementsByClassName('page-break'); //Since all the sites are copy-pasted it works
for (var i = 0; i < img.length; i++) {
console.log(img[i]);
img[i].style.marginLeft="-999px";
img[i].style.marginRight="-999px";
}