Update Image Loader Placeholder Remover to 1.15.0
- Include "placeholder" as a lazyloader class - Grab images' original URL from theconversation.com
This commit is contained in:
parent
1b10ebe803
commit
c4716c3373
|
@ -3,7 +3,7 @@
|
||||||
// @namespace blankie-scripts
|
// @namespace blankie-scripts
|
||||||
// @match http*://*/*
|
// @match http*://*/*
|
||||||
// @grant none
|
// @grant none
|
||||||
// @version 1.14.0
|
// @version 1.15.0
|
||||||
// @author blankie
|
// @author blankie
|
||||||
// @run-at document-end
|
// @run-at document-end
|
||||||
// @description Removes image loading placeholders
|
// @description Removes image loading placeholders
|
||||||
|
@ -112,7 +112,10 @@ function getLazyloaderClasses(element) {
|
||||||
// Examples of preload:
|
// Examples of preload:
|
||||||
// - https://restofworld.org/
|
// - https://restofworld.org/
|
||||||
// - https://restofworld.org/2023/parent-facing-matchmaking-apps-china/
|
// - https://restofworld.org/2023/parent-facing-matchmaking-apps-china/
|
||||||
if (className.includes("loading") || className.includes("lazy") || className.includes("responsive") || className.includes("preload")) {
|
// Examples of placeholder:
|
||||||
|
// - https://theconversation.com
|
||||||
|
// - https://theconversation.com/yall-that-most-southern-of-southernisms-is-going-mainstream-and-its-about-time-193265
|
||||||
|
if (className.includes("loading") || className.includes("lazy") || className.includes("responsive") || className.includes("preload") || className.includes("placeholder")) {
|
||||||
classes.push(className);;
|
classes.push(className);;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -169,6 +172,10 @@ function removePlaceholder(img) {
|
||||||
urlObject.search = "";
|
urlObject.search = "";
|
||||||
originalUrl = urlObject.href;
|
originalUrl = urlObject.href;
|
||||||
img.closest(".image-container").querySelector(".image-loading").remove();
|
img.closest(".image-container").querySelector(".image-loading").remove();
|
||||||
|
} else if (window.location.host === "theconversation.com") {
|
||||||
|
let urlObject = new URL(url, window.location);
|
||||||
|
urlObject.search = "";
|
||||||
|
originalUrl = urlObject.href;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.src = url;
|
img.src = url;
|
||||||
|
|
Loading…
Reference in New Issue