femboys
This commit is contained in:
parent
1540e1ba13
commit
3ed88b025c
1 changed files with 4 additions and 1 deletions
|
@ -3,7 +3,10 @@ const mutcal = (mutationList, observer) => {
|
||||||
if (mutation.type === "childList") {
|
if (mutation.type === "childList") {
|
||||||
const being = document.querySelector("body > div:last-child");
|
const being = document.querySelector("body > div:last-child");
|
||||||
if (being !== null) {
|
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();
|
being.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue