Mercurial > ec-userscripts
view tgsmart-direct-link.user.js @ 52:f8c3374d862c
Fix mandarake cleanup
No longer removing thumbnail in notification list
author | nanaya <me@nanaya.pro> |
---|---|
date | Sat, 16 Jun 2018 21:41:01 +0900 |
parents | 2e1cae72a63e |
children |
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();