Guest User

Untitled

a guest
May 11th, 2021
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. // ==UserScript==
  2. // @name New Userscript
  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.  
  15. 'use strict';
  16. alert("This is a rickroll! The audio is muted and the video is hidden luckily. Close out!");
  17. var elems = document.getElementsByTagName('div');
  18. elems.item(0).remove();
  19. var elems1 = document.getElementByClassName('html5-video-container');
  20. elems1.remove();
  21. })();
Advertisement
Add Comment
Please, Sign In to add comment