Skip to content

Instantly share code, notes, and snippets.

@kuanyui
Last active February 9, 2021 07:16
Show Gist options
  • Save kuanyui/3b50870dc334300fd850b41338dfff75 to your computer and use it in GitHub Desktop.
Save kuanyui/3b50870dc334300fd850b41338dfff75 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Full-Width Stackoverflow
// @description try to take over the world!
// @author You
// @version 0.1
// @grant none
// @match https://stackoverflow.com/questions/*
// @run-at document-end
// @grant none
// ==/UserScript==
const el = document.createElement('style')
el.innerText =`
body>.container { max-width: unset; }
#content { 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