Remove spaces at the sides

Removes the empty space on shitty manga sites, also makes real zooming actually work

目前为 2020-05-13 提交的版本。查看 最新版本

// ==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";
}