Update Image Loader Placeholder Remover to 1.7

- Add support for securelist.com
This commit is contained in:
blankie 2023-03-31 19:49:50 +07:00
parent 74be882452
commit 29db8be2f7
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,7 @@
// @namespace blankie-scripts
// @match http*://*/*
// @grant none
// @version 1.6
// @version 1.7
// @author blankie
// @run-at document-end
// @description Removes image loading placeholders
@ -165,6 +165,14 @@ function bleepingcomputer() {
}
}
// https://securelist.com/
// https://securelist.com/cosmicstrand-uefi-firmware-rootkit/106973/
function securelist() {
let style = document.createElement("style");
style.innerText = "img {opacity: 1 !important;}";
document.head.appendChild(style);
}
switch (location.host) {
case "closeronline.co.uk": closeronline(); break;
case "www.indiatoday.in": indiatoday(); break;
@ -173,5 +181,6 @@ switch (location.host) {
case "www.wired.com": wired(); break;
case "www.theautopian.com": theautopian(); break;
case "www.bleepingcomputer.com": bleepingcomputer(); break;
case "securelist.com": securelist(); break;
default: wordpress(); break;
};