Skip to content

Instantly share code, notes, and snippets.

@ulfsauer0815
Created April 7, 2017 07:43
Show Gist options
  • Save ulfsauer0815/b193d6b5bfdaced9e87036d14056a62b to your computer and use it in GitHub Desktop.
Save ulfsauer0815/b193d6b5bfdaced9e87036d14056a62b to your computer and use it in GitHub Desktop.
Remove GitHub clutter for wall display usage
// ==UserScript==
// @name GitHub Pull Request Wall Display Cleanup
// @namespace http://github.com/UlfS
// @version 0.2
// @description Cleaned up view of GitHub Pull Requests for Wall Diplay
// @author UlfS
// @require https://code.jquery.com/jquery-2.1.4.min.js
// @match https://github.com/*pulls*
// include /https?://github.com/([^/]+/[^/]+/)?pulls(&.*)?/
// @grant none
// ==/UserScript==
$('.header').remove();
$('.pagehead').remove();
$('.repository-sidebar').remove();
$('.site-footer').remove();
$('.protip').remove();
$('.subnav').remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment