Skip to content

Instantly share code, notes, and snippets.

@KevinBatdorf
Created July 16, 2022 02:46
Show Gist options
  • Save KevinBatdorf/89ed6a7022c38e06be673b2399b4d19b to your computer and use it in GitHub Desktop.
Save KevinBatdorf/89ed6a7022c38e06be673b2399b4d19b to your computer and use it in GitHub Desktop.
Various tweaks to MDN to improve readability
// ==UserScript==
// @name MDN fixes
// @namespace kevinbatdorf
// @version 0.1
// @description Make MDN great again
// @author You
// @match https://developer.mozilla.org/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=mozilla.org
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.documentElement.style.setProperty("--max-width", "1800px");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment