Guest User

Untitled

a guest
May 11th, 2021
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Rickroll Avoider
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://www.youtube.com/watch?v=dQw4w9WgXcQ*
  8. // @icon         https://www.google.com/s2/favicons?domain=youtube.com
  9. // @grant        none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.     alert("This is a rickroll! The audio is muted and the video is hidden luckily. Close out!");
  15.     var elems = document.getElementsByTagName('div')[0];
  16.     elems.remove();
  17.     var elems1 = document.getElementsByClassName('html5-video-container')[0];
  18.     elems1.remove();
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment