Hentai Foundry Downloader

By Vinnie Tesla Last update May 22, 2007 — Installed 905 times. Daily Installs: 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 1, 1, 3, 5, 1, 0, 0, 1, 0, 1, 3, 4, 0, 0, 1, 0, 6, 0, 0
// ==UserScript==
// @name	Hentai Foundry Downloader
// @namespace	http://vinnietesla.com/amusements
// @description	Changes Hentai Foundry gallery HTML links to direct image links
// @include	http://www.hentai-foundry.com/user-*
// ==/UserScript==

var longuser = location.pathname.match(/user-([a-zA-Z0-9]+)/);
var user = longuser[1];
var firstletter = user.charAt(0);
firstletter = firstletter.toLowerCase();

  for (var i=0; i<document.links.length; i++) {
    link = document.links[i];
	   if (document.links[i].pathname.indexOf("pic-") > -1) {
	     var number = document.links[i].pathname.match(/\d+/);
	     document.links[i].pathname = "piccies/" + firstletter + "/" + user + "/" + number + ".jpg";
    }
  }