Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to write a Greasemonkey script that will hide images in Google Image Search that I've already seen (so that I won't be shown the same image in search results twice, when making multiple searches.) Is there any way to obtain a list of images from search results using a Greasemonkey script so that I can prevent the images from loading after they are viewed? In order to do this, I'll need to find a way to prevent images from loading after they've previously been viewed.

var blockedImageList = new Array();

function blockImages(imageList){
    //prevent images from loading if they are on the blocked image list,
                                      //which is an array of image URLs
}

function getAllImagesFromPage(){
    //add all of the images on the current page to the blocked image list.
}
share|improve this question
I'll need to find a way to stop images from loading after they've previously been loaded on a specific page. The two questions above should address both of those issues. – Anderson Green Jan 28 at 17:15
This question explains how to obtain the list of all images on a page: stackoverflow.com/questions/8641596/… – Anderson Green Jan 28 at 17:23
Also, this question explains how to remove a list of images using a Greasemonkey script. – Anderson Green Jan 28 at 17:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.