Skip to content

Instantly share code, notes, and snippets.

@ulfsauer0815
Created April 7, 2017 07:43
Show Gist options
  • Select an option

  • Save ulfsauer0815/b193d6b5bfdaced9e87036d14056a62b to your computer and use it in GitHub Desktop.

Select an option

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