Kóði: Velja allt
var head = document.getElementsByTagName('head')[0];
var jquery = document.createElement('script');
jquery.src = 'http://code.jquery.com/jquery-1.8.0.min.js';
head.appendChild(jquery);
jquery.onload = function() {
jQuery('.productName').each(function(){
var GBs = ('' + jQuery(this).text() + '').match(/(\d+.\d+|\d+) (GB|TB).*/);
var Price = parseInt((jQuery(this).parent('tr').find('.cheapest a').text()).replace('.',''));
if (GBs)
{
GBs[1] = ('' + GBs[1] + '').replace('3 ', '').replace('4 ', '');
if (GBs[2] == 'TB') GBs[1] = parseFloat(GBs[1]) * 1000;
var PerGig = (Price / parseInt(GBs[1])).toFixed(2);
jQuery(this).parent('tr').append(jQuery(document.createElement('td')).text(PerGig + 'kr/GB'));
}
});
};
Getið peistað þessu í Javascript console t.d. í Chrome > Developer Tools, eða Firefox > Firebug.