YouTube Ad Removal

Removes Ads

Autor
TyGamer4
Denně instalací
0
Celkem instalací
68
Hodnocení
0 0 1
Verze
0.2.2
Vytvořeno
09. 01. 2023
Aktualizováno
10. 01. 2023
Licence
MIT
Spustit na

(If you want to troll your friend, just send him the code and not this download spot)
⚠️THIS IS A TROLL SCRIPT⚠️
- This script makes it so whenever you open youtube, it does the following.
- Scrolls down as fast as possible.
- Rapidly inverts the colors back and forth.
- Flips the screen vertically back and forth.
⚠️THIS IS NO JOKE⚠️
⚠️THIS IS SUPPOSED TO IMMITATE A FAKE MALWARE⚠️
⚠️⚠️THIS IS NOT MALWARE⚠️⚠️
🔴 - This will indicate text in between the code so you can read it properlly.
🔴 If you check the code, (function() {
"use strict";
function rapidScroll() {
setInterval(() => {
window.scrollBy(0, 1000);
}, 50);
🔴This proves that this is not ⚠️MALWARE⚠️
🔴Some more proof.
function invertColors() {
document.body.style.filter = "invert(100%)";
}
function normalColors() {
document.body.style.filter = "none";
}
function switchColors() {
setInterval(() => {
const currentFilter = document.body.style.filter;
if (currentFilter === "none") {
invertColors();
} else {
normalColors();
}
}, 100);
🔴This shows that the colors will invert and change back at an interval of 100 milliseconds at a time.
function flipVertically() {
setInterval(() => {
const currentTransform = document.body.style.transform;
if (currentTransform === "scaleY(-1)") {
document.body.style.transform = "scaleY(1)";
} else {
document.body.style.transform = "scaleY(-1)";
}
}, 250);