【🌟】Rick Roll Script

Este script hará que aparezca un Rick Roll cuando estés en el sitio web. Si quieres enviarlo a tus amigos, puedes cambiar el nombre y ofuscarlo para que no lo descubran.

Od 22.01.2024.. Pogledajte najnovija verzija.

// ==UserScript==
// @name         【🌟】Rick Roll Script
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  Este script hará que aparezca un Rick Roll cuando estés en el sitio web. Si quieres enviarlo a tus amigos, puedes cambiar el nombre y ofuscarlo para que no lo descubran.
// @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/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    alert('Loading the script!');
    alert('Script loaded enjoy whit the script!');

    var videoId = 'dQw4w9WgXcQ';

    var youtubeUrl = 'https://www.youtube.com/watch?v=' + videoId;

    window.location.href = youtubeUrl + '&autoplay=1';
})();