Last active
April 12, 2021 20:47
-
-
Save hyperneutrino/8bb80a894d324b0ea0139f2da80ee2aa to your computer and use it in GitHub Desktop.
Rickroll Guard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Rickroll Guard | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author hyper-neutrino | |
// @match https://www.youtube.com/watch?v=dQw4w9WgXcQ | |
// @icon https://www.google.com/s2/favicons?domain=youtube.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.close(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment