Skip to content

Instantly share code, notes, and snippets.

@DennisMitchell
Last active September 9, 2021 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DennisMitchell/c9d0bc822635e31d4dc3 to your computer and use it in GitHub Desktop.
Save DennisMitchell/c9d0bc822635e31d4dc3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Github: wide wiki body
// @description Move the sidebar of GitHub wikis to the right, making the wiki body wider.
// @downloadURL https://gist.githubusercontent.com/DennisMitchell/c9d0bc822635e31d4dc3/raw
// @grant none
// @version 1.0
// @include http://github.com/*
// @include https://github.com/*
// ==/UserScript==
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '#wiki-wrapper { width: 1160px; }';
document.documentElement.appendChild(style);
@manoger
Copy link

manoger commented Sep 9, 2021

Is it a Min Browser userscript?
I came from https://github.com/Glan9/Gaia/wiki;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment