🏠 Home 

Mangadex - Full size

Put the main container of the new mangadex website in full size


Install this script?
// ==UserScript==
// @name         Mangadex - Full size
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Put the main container of the new mangadex website in full size
// @author       Yrtiop
// @match        https://mangadex.org/*
// @grant        none
// ==/UserScript==
(function() {
var containerFullSize = function() {
setTimeout(() => {
var container = document.querySelector(".container > .row > .col-sm-8.col-md-6.col-12");
if(container) {
container.classList.remove("col-sm-8", "col-md-6");
}
}, 1000);
}
containerFullSize();
window.addEventListener("click", containerFullSize, false);
})();