You can target the widget using CSS and simply set it to display:none;
. This would hide the footer from ONLY your homepage, there is no need for a plugin to achieve this. All interior pages will have the footer back visible.
body.home #copyright {
display: none;
}
That would go in your active theme style.css file or a custom css plugin.