Close
Cyberbeing said:
Could you please post or PM me that greasemonkey script. I have absolutely zero knowledge about how to code anything in javascript myself.
// ==UserScript==
// @name Moe Imouto
// @namespace none
// @description Bla
// ==/UserScript==

var allLinks, thisLink;
allLinks = document.evaluate( '//a[@href]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i < allLinks.snapshotLength; i++)
{ thisLink = allLinks.snapshotItem(i);
if ((thisLink.href).match(/.*org\/jpeg.*/i)){
thisLink.href = (thisLink.href).replace(/jpeg/, 'image');
thisLink.href = (thisLink.href).replace(/\.jpg/, '\.png');
}

}