This commit is contained in:
femsci 2023-10-01 10:23:40 +02:00
parent 1540e1ba13
commit 3ed88b025c
Signed by: femsci
GPG key ID: 08F7911F0E650C67

View file

@ -3,7 +3,10 @@ const mutcal = (mutationList, observer) => {
if (mutation.type === "childList") {
const being = document.querySelector("body > div:last-child");
if (being !== null) {
if (being.innerHTML.startsWith('<img src="data:image/svg+xml')) {
if (
being.innerHTML.startsWith('<img src="data:image/svg+xml') ||
being.innerHTML.includes("Claim your FREE account")
) {
being.remove();
}
}