Greasy Fork is available in English.

YouTube Ad Removal

Removes Ads

Yazar
TyGamer4
Günlük kurulumlar
0
Toplam kurulumlar
61
Değerlendirmeler
0 0 1
Versiyon
0.2.2
Oluşturulma
09.01.2023
Güncellenme
10.01.2023
Lisans
MIT
Geçerli

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