Update Image Loader Placeholder Remover to version 1.3
- Added image support for www.pcgamer.com
This commit is contained in:
parent
a75a6f1d7c
commit
8213219f17
|
@ -3,7 +3,7 @@
|
||||||
// @namespace blankie-scripts
|
// @namespace blankie-scripts
|
||||||
// @match http*://*/*
|
// @match http*://*/*
|
||||||
// @grant none
|
// @grant none
|
||||||
// @version 1.2
|
// @version 1.3
|
||||||
// @author blankie
|
// @author blankie
|
||||||
// @run-at document-end
|
// @run-at document-end
|
||||||
// @description Removes image loading placeholders
|
// @description Removes image loading placeholders
|
||||||
|
@ -108,9 +108,24 @@ function wordpress() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://www.pcgamer.com/
|
||||||
|
// https://www.pcgamer.com/windows-95-theme-for-windows-10/
|
||||||
|
function pcgamer() {
|
||||||
|
// look into video carousels?
|
||||||
|
for (element of document.querySelectorAll("img.lazy-image-van")) {
|
||||||
|
let originalUrl = element.getAttribute("data-original-mos");
|
||||||
|
if (originalUrl === null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
element.src = originalUrl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
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;
|
||||||
|
case "www.pcgamer.com": pcgamer(); break;
|
||||||
default: wordpress(); break;
|
default: wordpress(); break;
|
||||||
};
|
};
|
Loading…
Reference in New Issue