>>106659022
It seems arch.b4k.dev does additional lazy loading in js - it only adds the .post_image src attribute (stored in it's data-src attribute) when you scroll near
I think this userscript solves it? Gifs still don't seem to work tho
// ==UserScript==
// @name Disable custom b4k archive lazy loading
// @namespace http://tampermonkey.net/
// @version 2025-09-21
// @description try to take over the world!
// @author You
// @match https://arch.b4k.dev/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=b4k.dev
// @grant none
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
let thread_OP_images = document.querySelectorAll(".thread_image");
for(const thread_OP_image of thread_OP_images) {
thread_OP_image.setAttribute("src", thread_OP_image.getAttribute("data-src"));
}
let post_images = document.querySelectorAll(".post_image");
for(const post_image of post_images) {
post_image.setAttribute("src", post_image.getAttribute("data-src"));
}
})();