Skip to content

Instantly share code, notes, and snippets.

@starzonmyarmz
Created October 3, 2012 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save starzonmyarmz/3827357 to your computer and use it in GitHub Desktop.
Save starzonmyarmz/3827357 to your computer and use it in GitHub Desktop.
dot-js script to only show screenshots from grab.by domain
// 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