Last active
February 9, 2021 07:14
-
-
Save kuanyui/5ee9ad04db534c2d5b7a3b6201746d60 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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