To get the plugin working with the custom permalinks plugin, replace the no_category_base function with:
function no_category_base($catlink, $category_id) {
$base = get_option('category_base');
if ($base=='')
$base='category'; // wp default if none specified
$catlink=str_replace($base, '', $catlink);
return $catlink;
}