Greasy Fork is available in English.

Improved Doxygen styling

Make the text of Doxygen easier to read

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Improved Doxygen styling
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Make the text of Doxygen easier to read
// @author       Joost Visser
// @match        https://output.circle-artifacts.com/*/doxygen/*
// @match        */*/*/build/docs/html/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    let maxWidth = "55em";

    let doc = document.querySelector("#doc-content");
    let header = document.querySelector(".header");
    let contents = document.querySelector(".contents");

    doc.style.display = "flex";
    doc.style.alignItems = "start";
    doc.style.flexDirection = "column";

    header.style.width = "100%";
    header.style.maxWidth = maxWidth;

    contents.style.width = "100%";
    contents.style.maxWidth = maxWidth;

})();