Greasy Fork is available in English.

Autohide Mangadex Header

Automatically hides the header when using MangaDex's legacy reader.

// ==UserScript==
// @name         Autohide Mangadex Header
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automatically hides the header when using MangaDex's legacy reader.
// @author       Noah Guillory
// @match        https://mangadex.org/chapter/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.onload = function() {
        document.querySelector('#content > div:nth-child(1) > div > h6 > span.minimise.fas.fa-times.fa-lg.float-right').click();
    }
})();