Skip to content

Instantly share code, notes, and snippets.

@aconz2
Created June 12, 2017 20:50
Show Gist options
  • Save aconz2/aeeb174e4b6586935f9b2cf28fbfa26c to your computer and use it in GitHub Desktop.
Save aconz2/aeeb174e4b6586935f9b2cf28fbfa26c to your computer and use it in GitHub Desktop.
Automatically redirect you to the external page when clicking on an external link from an Upwork
// ==UserScript==
// @name Upwork AutoRedirect
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically redirect you to the external page when clicking on an external link from an Upwork listing.
// @author aconz2
// @match https://www.upwork.com/leaving?*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location = document.getElementById('btnLinkExternal').href;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment