Last active
February 13, 2017 11:40
-
-
Save AliSoftware/e272a2d6470eaadf905a6be73414906f to your computer and use it in GitHub Desktop.
Hide Pods/* related files in a GitHub diff page
This file contains 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
// When you are in the diff page of a GitHub PR | |
// And want to hide all the Pods/* files in that diff page, use this: | |
// Paste that in your Web Inspector's console | |
var nodes = document.evaluate("//div[@class='file-header' and starts-with(@data-path,'Pods/')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); | |
for(i=0; i<nodes.snapshotLength; ++i) { | |
nodes.snapshotItem(i).parentNode.hidden = true | |
} | |
// Or even better, create a bookmark with this code for easy quick access: | |
javascript:var nodes = document.evaluate("//div[@class='file-header' and starts-with(@data-path,'Pods/')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for(i=0; i<nodes.snapshotLength; ++i) { nodes.snapshotItem(i).parentNode.hidden = true } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks <3.