Skip to content

Instantly share code, notes, and snippets.

@christian-meyer-jimdo
Last active May 2, 2016 11:40
Show Gist options
  • Save christian-meyer-jimdo/edde2bb611920ba182b4bb506c16b55a to your computer and use it in GitHub Desktop.
Save christian-meyer-jimdo/edde2bb611920ba182b4bb506c16b55a to your computer and use it in GitHub Desktop.
Removes nodes from a GitHub PR files view, in order to only show the name of the files.

Execute the following code as bookmarklet to manipulate GitHub Pull Request page

Array.prototype.forEach.call(document.querySelectorAll('.blob-wrapper'), function(node){
  node.remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment