【🌟】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 can't know.

اعتبارا من 18-01-2024. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         【🌟】Rick Roll Script
// @namespace    http://tampermonkey.net/
// @version      0.1
// @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 can't know.
// @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;
})();