Hi Mireku,
Basically you can go to the module file and modify it accordingly. For instance in your case, you can go to your /modules/mod_easyblogshowcase/mod_easyblogshowcase.php and add the following code to make it to only appear on your easyblog frontpage.
$view = $app->input->get('view');
if ($view != 'latest') {
return;
}
Hope these help.