Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name New Userscript
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match https://www.youtube.com/watch?v=dQw4w9WgXcQ
- // @icon https://www.google.com/s2/favicons?domain=youtube.com
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- 'use strict';
- alert("This is a rickroll! The audio is muted and the video is hidden luckily. Close out!");
- var elems = document.getElementsByTagName('div');
- elems.item(0).remove();
- var elems1 = document.getElementByClassName('html5-video-container');
- elems1.remove();
- })();
Advertisement
Add Comment
Please, Sign In to add comment