Update Image Loader Placeholder Remover to 1.11.0

- Add support for knowyourmeme.com
This commit is contained in:
blankie 2023-06-22 23:39:03 +07:00
parent 32ef114fa6
commit f55c0c34c0
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 6 additions and 3 deletions

View File

@ -3,7 +3,7 @@
// @namespace blankie-scripts // @namespace blankie-scripts
// @match http*://*/* // @match http*://*/*
// @grant none // @grant none
// @version 1.10.0 // @version 1.11.0
// @author blankie // @author blankie
// @run-at document-end // @run-at document-end
// @description Removes image loading placeholders // @description Removes image loading placeholders
@ -194,7 +194,9 @@ function vulcan() {
} }
// https://blog.joshumax.me/general/2021/08/11/running-doom-on-captioncall.html // https://blog.joshumax.me/general/2021/08/11/running-doom-on-captioncall.html
function joshumax() { // https://knowyourmeme.com/
// https://knowyourmeme.com/memes/saddam-husseins-hiding-place
function joshumax_knowyourmeme() {
for (let element of document.querySelectorAll("img[data-src]")) { for (let element of document.querySelectorAll("img[data-src]")) {
const addLink = element.parentNode.tagName !== "A"; const addLink = element.parentNode.tagName !== "A";
const url = new URL(element.getAttribute("data-src"), location); const url = new URL(element.getAttribute("data-src"), location);
@ -222,6 +224,7 @@ switch (location.host) {
case "www.bleepingcomputer.com": bleepingcomputer(); break; case "www.bleepingcomputer.com": bleepingcomputer(); break;
case "securelist.com": securelist(); break; case "securelist.com": securelist(); break;
case "vulcan.io": vulcan(); break; case "vulcan.io": vulcan(); break;
case "blog.joshumax.me": joshumax(); break; case "blog.joshumax.me": joshumax_knowyourmeme(); break;
case "knowyourmeme.com": joshumax_knowyourmeme(); break;
default: wordpress(); break; default: wordpress(); break;
}; };