Created
October 3, 2012 14:54
-
-
Save starzonmyarmz/3827357 to your computer and use it in GitHub Desktop.
dot-js script to only show screenshots from grab.by domain
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
// I only want to see the image on grab.by screenshots | |
(function(d) { | |
var grab = d.getElementById('thegrab'), | |
link = d.querySelector('head > link'), | |
body = d.body; | |
// Remove Styles | |
link.parentNode.removeChild(link); | |
// Get rid of EVERYTHING in body and append the screenshot | |
body.innerHTML = ''; | |
body.appendChild(grab); | |
}(document)); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment