Skip to content

Instantly share code, notes, and snippets.

View christian-meyer-jimdo's full-sized avatar

christian-meyer-jimdo

View GitHub Profile
@christian-meyer-jimdo
christian-meyer-jimdo / show-pr-files-only.md
Last active May 2, 2016 11:40
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();
});