Mercurial > ec-userscripts
diff tgsmart-direct-link.user.js @ 23:d7cfa95436f9
(none)
author | Edho Arief <me@myconan.net> |
---|---|
date | Fri, 13 Nov 2015 09:23:40 +0000 |
parents | |
children | 28505554a8b9 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tgsmart-direct-link.user.js Fri Nov 13 09:23:40 2015 +0000 @@ -0,0 +1,19 @@ +// ==UserScript== +// @name TG Smart Nuke Out Tracking Function +// @namespace https://myconan.net +// @version 1.0.0 +// @description Remove tracking function from links in TG Smart +// @author nanaya +// @match http://www.tgsmart.jp/* +// @grant none +// @downloadURL https://bitbucket.org/!api/2.0/snippets/nanaya1/TK64/tip/files/tgsmart-direct-link.user.js +// ==/UserScript== + +;(function() { + Array.prototype.forEach.call( + document.querySelectorAll('a[onclick^="trackOutboundLink("'), + function(el) { + el.setAttribute("onclick", ""); + } + ) +}).call(); \ No newline at end of file