// ==UserScript==
// @name Mangadex navbar toggle button
// @version 1.1
// @description Makes the nav-bar toggleable so that you can enjoy your reading in full screen but still navigate! Button at top right of screen.
// @author DinoMC
// @match https://mangadex.org/*
// @grant none
// @namespace https://greasyfork.org/users/563463
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
$('').prependTo("body");
var xbutton = $('').prependTo("body");
xbutton.click(function() {
$("nav.navbar").toggle();
$("body,.reader-main").toggleClass("tall");
});
})();