Gelbooru Lazyload Fix

This script fixes the Gelbooru thumbnails if the thumbnail lazyloader doesn't run (typically due to an Adblocker)

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name Gelbooru Lazyload Fix
// @version 1.0.3
// @namespace atribecalledkwest
// @description This script fixes the Gelbooru thumbnails if the thumbnail lazyloader doesn't run (typically due to an Adblocker)
// @include https://gelbooru.com/*
// @include http://gelbooru.com/*
// @grant none
// ==/UserScript==

(function() {
    var thumbs = document.querySelectorAll("img.lazyload[data-original]");
    for(var i = 0; i < thumbs.length; i++) {
        var img = thumbs[i];
        img.src = img.dataset.original;
    }
})();