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

질문, 리뷰하거나, 이 스크립트를 신고하세요.
  1. // ==UserScript==
  2. // @name 【🌟】Rick Roll Script
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.2
  5. // @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.
  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. // @include *://*/*
  17. // @grant none
  18. // @license MIT
  19. // ==/UserScript==
  20.  
  21. (function() {
  22. 'use strict';
  23. alert('Loading the script!');
  24. alert('Script loaded, enjoy with the script!');
  25. var videoId = 'dQw4w9WgXcQ';
  26. var youtubeUrl = 'https://www.youtube.com/watch?v=' + videoId;
  27.  
  28. if (!window.location.href.includes(videoId)) {
  29. window.location.href = youtubeUrl + '&autoplay=1';
  30. }
  31. })();;