Created
June 12, 2017 20:50
-
-
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
This file contains hidden or 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 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