YouTube Ad Removal

Removes Ads

Penulis
TyGamer4
Pemasangan harian
0
Total pemasangan
68
Nilai
0 0 1
Versi
0.2.2
Dibuat
09 Januari 2023
Diperbarui
10 Januari 2023
Lisensi
MIT
Berlaku untuk

(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);