Skip to content

Instantly share code, notes, and snippets.

@doomsower
Created January 21, 2019 08:00
Show Gist options
  • Save doomsower/336417743503750f5c5d67c3e7559dc1 to your computer and use it in GitHub Desktop.
Save doomsower/336417743503750f5c5d67c3e7559dc1 to your computer and use it in GitHub Desktop.
Make github wiki occupy full screen width
// ==UserScript==
// @name Github wide wiki
// @version 1
// @grant none
// @include https://github.com/*/*/wiki/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
this.$ = this.jQuery = jQuery.noConflict(true);
$(document).ready(function ()
{
$("#wiki-wrapper").parent().parent().css("max-width", "none");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment