Skip to content

Instantly share code, notes, and snippets.

@kuanyui
Last active February 9, 2021 07:14
Show Gist options
  • Save kuanyui/5ee9ad04db534c2d5b7a3b6201746d60 to your computer and use it in GitHub Desktop.
Save kuanyui/5ee9ad04db534c2d5b7a3b6201746d60 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Full-Width in MDN
// @version 0.3
// @grant none
// @match https://developer.mozilla.org/*
// @run-at document-end
// @grant none
// ==/UserScript==
const el = document.createElement('style')
el.innerText =`
.document-page .page-content-container { max-width: unset; }
.article dl, .article ol, .article p, .article ul { max-width: unset; }
`
document.body.appendChild(el)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment