Created
January 21, 2019 08:00
-
-
Save doomsower/336417743503750f5c5d67c3e7559dc1 to your computer and use it in GitHub Desktop.
Make github wiki occupy full screen width
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 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