【🌟】Rick Roll Script

This script will make a Rick Roll appear when you are on the website. If you want to send it to your friends, you can change the name and obfuscate it so they don't find out.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         【🌟】Rick Roll Script
// @namespace    http://tampermonkey.net/
// @version      0.1.2
// @description  This script will make a Rick Roll appear when you are on the website. If you want to send it to your friends, you can change the name and obfuscate it so they don't find out.
// @author       DaRK :) 
// @match        https://krunker.io/*
// @match        https://*.moomoo.io/*
// @match        https://sploop.io/*
// @match        https://battledudes.io/*
// @match        https://shellshock.io/*
// @match        https://*.discord.com/app
// @match        https://*.discord.com/channels/*
// @match        https://*.discord.com/login
// @match               *://chat.openai.com/*
// @include      *://*/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
 
    alert('Loading the script!');
    alert('Script loaded, enjoy with the script!');
 
    var videoId = 'dQw4w9WgXcQ';
    var youtubeUrl = 'https://www.youtube.com/watch?v=' + videoId;

    if (!window.location.href.includes(videoId)) {
        window.location.href = youtubeUrl + '&autoplay=1';
    }
})();;