Created
June 24, 2019 07:08
-
-
Save ursi/1435ec5e176a0e2ac9b095d14d073fe2 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 git-scm book | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://git-scm.com/book/en/v2/* | |
// @grant none | |
// ==/UserScript== | |
document.querySelector('.sidebar').style.display = 'none'; | |
document.querySelector('#documentation > div:last-child').style.width = 'unset'; | |
document.querySelector('#content').style.width = 'unset'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment