I've just updated the plugin to show the fields in the admin if the post type doesn't have support for them. If you want to show them, make sure you remove post type support for the post type, like this:
add_action( 'init', function() {
// Remove post type supports and show Meta Box fields for them.
remove_post_type_support( 'post', 'title' );
remove_post_type_support( 'post', 'thumbnail' );
} );