Skip to content

Instantly share code, notes, and snippets.

@HokieGeek
Last active April 5, 2019 16:42
Show Gist options
  • Save HokieGeek/c04c36de872ce5489947b520e2095143 to your computer and use it in GitHub Desktop.
Save HokieGeek/c04c36de872ce5489947b520e2095143 to your computer and use it in GitHub Desktop.

How to install

  1. Install the Tampermonkey browser extension
  1. Click here to trigger the extension
  2. Then click the Install button which will show up on your browser similar to the one below.
// ==UserScript==
// @name close-stupid-webex-droppings
// @namespace https://github.com/sonatype/se-scripts/tree/master/andres/userscripts
// @version 0.1
// @description Simply closes the page that webex opens in the browser #hackthingsbetter
// @author HokieGeek
// @match *://www.sonatype.com/nexus-repository-sonatype
// @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