How accomplish modification the_content if home/start page?

You can check for is_home() and is_front_page() inside of your filter:

add_filter( 'the_content', function( $content ) 
{
    if ( ! is_home() and ! is_front_page() )
        return $content;

    return 'Home, sweet home!<br>' . $content;
});