Mercurial > ec-userscripts
view tgsmart-direct-link.user.js @ 46:c20e3e6b0a3f
Even more rulesss
author | nanaya <me@nanaya.pro> |
---|---|
date | Thu, 24 Aug 2017 20:51:06 +0900 |
parents | 32a213717e6a |
children | 2e1cae72a63e |
line wrap: on
line source
// ==UserScript== // @name TG Smart Nuke Out Tracking Function // @namespace https://myconan.net // @version 1.0.1 // @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/nanayapro/TK64/tip/files/tgsmart-direct-link.user.js // ==/UserScript== ;(function() { "use strict"; var links = document.querySelectorAll("a[onclick^='trackOutboundLink('") var removeOnClick = function(el) { el.setAttribute("onclick", "") } Array.prototype.forEach.call(links, removeOnClick) }).call();