NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name AlbionOnline2D Image Fix
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Fixes the thumbnail images on the site.
// @author Sieyk
// @license MIT
// @match https://www.albiononline2d.com/*
// @icon https://www.google.com/s2/favicons?domain=tampermonkey.net
// @updateURL https://openuserjs.org/meta/Sieyk/AlbionOnline2D_Image_Fix.meta.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
var images = Array.from(document.getElementsByTagName('img'));
for (var im in images) {
if (images[im].getAttribute("data-src") != null) {
images[im].src = images[im].getAttribute("data-src");
}
}
})();