NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name LinicomSkipper
// @description Removes linicom ad links from various sites
// @namespace http://0x59.net/
// @author Yehuda Deutsch <yeh@uda.co.il>
// @license GPLv3
// @version 0.2
// @include http://*.ynet.co.il/*
// @match http://*.ynet.co.il/*
// @include http://*.mako.co.il/*
// @match http://*.mako.co.il/*
// @include http://*.haaretz.co.il/*
// @match http://*.haaretz.co.il/*
// @include http://*.themarker.co.il/*
// @match http://*.themarker.co.il/*
// ==/UserScript==
for (var i in document.links) {
l = document.links[i].href;
linicom = /linicom\.([^/]+)\/external/.test(l);
if (linicom) {
document.links[i].href = decodeURIComponent(l.substr(l.indexOf('&a=') + 3));
}
}