Greasy Fork is available in English.

Affiliate killer

No more Affiliate Link! Plz Original URL!

< Spätná väzba na Affiliate killer

Hodnotenie: Dobré - skript funguje

§
Pridaný: 03.07.2016
Upravený: 03.07.2016

// ==UserScript==
// @name 2chav Direct Link
// @description Strips jump page.
// @namespace sandbox
// @include http://2chav.com/*
// @version 1.1
// ==/UserScript==

(function(){
var links = document.querySelectorAll('a');
Array.prototype.forEach.call(links, function (a) {
var b = a.href.match(/^http:\/\/(www\.)?dmm\.co\.jp\/(.+)\/2chavnews-001/);
if (b) {
a.href = a.href.replace(/\/2chavnews-001(\/)?/gi,'');
//alert(a.href);
}
});
})();

Pridať odpoveď

Aby ste mohli pridať odpoveď, prihláste sa.