すでに見たGoogle画像検索の画像を非表示にするGreasemonkeyスクリプトを作成しようとしています(複数の検索を行ったときに、検索結果に同じ画像が2回表示されないようにするため)。 Greasemonkeyスクリプトを使用して検索結果から画像のリストを取得し、表示後に画像が読み込まれないようにするにはどうすればよいですか?これを行うには、以前に表示した後に画像が読み込まれないようにする方法を見つける必要があります。
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.
}