Update Image Loader Placeholder Remover to 1.7
- Add support for securelist.com
This commit is contained in:
parent
74be882452
commit
29db8be2f7
|
@ -3,7 +3,7 @@
|
||||||
// @namespace blankie-scripts
|
// @namespace blankie-scripts
|
||||||
// @match http*://*/*
|
// @match http*://*/*
|
||||||
// @grant none
|
// @grant none
|
||||||
// @version 1.6
|
// @version 1.7
|
||||||
// @author blankie
|
// @author blankie
|
||||||
// @run-at document-end
|
// @run-at document-end
|
||||||
// @description Removes image loading placeholders
|
// @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) {
|
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;
|
||||||
|
@ -173,5 +181,6 @@ switch (location.host) {
|
||||||
case "www.wired.com": wired(); break;
|
case "www.wired.com": wired(); break;
|
||||||
case "www.theautopian.com": theautopian(); break;
|
case "www.theautopian.com": theautopian(); break;
|
||||||
case "www.bleepingcomputer.com": bleepingcomputer(); break;
|
case "www.bleepingcomputer.com": bleepingcomputer(); break;
|
||||||
|
case "securelist.com": securelist(); break;
|
||||||
default: wordpress(); break;
|
default: wordpress(); break;
|
||||||
};
|
};
|
Loading…
Reference in New Issue