Update Image Loader Placeholder Remover to 1.2

Wordpress images are now handled
This commit is contained in:
blankie 2022-09-10 22:10:04 +07:00
parent b535a4aeeb
commit 59fe815206
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 15 additions and 4 deletions

View File

@ -1,11 +1,9 @@
// ==UserScript== // ==UserScript==
// @name Image Loader Placeholder Remover // @name Image Loader Placeholder Remover
// @namespace blankie-scripts // @namespace blankie-scripts
// @match http*://closeronline.co.uk/* // @match http*://*/*
// @match http*://www.indiatoday.in/*
// @match http*://www.vice.com/*
// @grant none // @grant none
// @version 1.1 // @version 1.2
// @author blankie // @author blankie
// @run-at document-end // @run-at document-end
// @description Removes image loading placeholders // @description Removes image loading placeholders
@ -98,8 +96,21 @@ function vice() {
} }
} }
// https://daramiblog.com/
// https://daramiblog.com/how-to-group-irregular-verbs-for-more-efficient-learning/
function wordpress() {
for (element of document.querySelectorAll("img.lazyload.wp-post-image")) {
if (element.attributes["data-src"] === undefined || element.attributes["data-src"].value.length <= 0) {
continue;
}
element.src = element.attributes["data-src"].value;
element.style.opacity = 100;
}
}
switch (location.host) { switch (location.host) {
case "closeronline.co.uk": closeronline(); break; case "closeronline.co.uk": closeronline(); break;
case "www.indiatoday.in": indiatoday(); break; case "www.indiatoday.in": indiatoday(); break;
case "www.vice.com": vice(); break; case "www.vice.com": vice(); break;
default: wordpress(); break;
}; };