Update Image Loader Placeholder Remover to 1.12.0

- Add support for legendsoflocalization.com
This commit is contained in:
blankie 2023-07-22 10:51:59 +10:00
parent f55c0c34c0
commit dcd9c57744
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 10 additions and 4 deletions

View File

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