Created
February 16, 2018 06:57
-
-
Save guehara/c60ea5a148c71d749e2a8e708c29db6b to your computer and use it in GitHub Desktop.
Slack Redirect URL remove for Tampermonkey
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 Slack Direct Link | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://*.slack.com/messages/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
$('a[data-referer-safe="1"]').unbind('click').unblind('mouseover'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment