【🌟】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.

当前为 2024-01-22 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name 【🌟】Rick Roll Script
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @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.
  6. // @author DaRK :)
  7. // @match https://krunker.io/*
  8. // @match https://*.moomoo.io/*
  9. // @match https://sploop.io/*
  10. // @match https://battledudes.io/*
  11. // @match https://shellshock.io/*
  12. // @match https://*.discord.com/app
  13. // @match https://*.discord.com/channels/*
  14. // @match https://*.discord.com/login
  15. // @match *://chat.openai.com/*
  16. // @grant none
  17. // @license MIT
  18. // ==/UserScript==
  19.  
  20. (function() {
  21. 'use strict';
  22.  
  23. alert('Loading the script!');
  24. alert('Script loaded enjoy whit the script!');
  25.  
  26. var videoId = 'dQw4w9WgXcQ';
  27.  
  28. var youtubeUrl = 'https://www.youtube.com/watch?v=' + videoId;
  29.  
  30. window.location.href = youtubeUrl + '&autoplay=1';
  31. })();