NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Linki Mobile szukajka.cba.pl
// @namespace marcinsu
// @include http://szukajka.cba.pl/401/
// @version 1.0
// @grant none
// ==/UserScript==
window.onload = function() {
var a = document.getElementsByTagName('a');
for(var i = 0; i < a.length; ++i) {
var num = a[i].href.match(/[0-9]{10,12}.html/g);
var link = 'http://m.aliexpress.com/item/' + num;
if (num) {
a[i].href = link;
a[i].innerHTML = link;
}
}
}