Skip to content

Instantly share code, notes, and snippets.

@hyper-neutrino
Last active April 12, 2021 20:47
Show Gist options
  • Save hyper-neutrino/8bb80a894d324b0ea0139f2da80ee2aa to your computer and use it in GitHub Desktop.
Save hyper-neutrino/8bb80a894d324b0ea0139f2da80ee2aa to your computer and use it in GitHub Desktop.
Rickroll Guard
// ==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