Unfortunately, no.
But, there is a workaround that requires some coding skills (such as how to extend a plugin). For example, if a site has the ‘book’ custom post type, adding the following two lines (inside the function __construct) would be enough to preload it…
add_action( 'save_post_book', array( $this, 'preload_desktop' ), 900, 3 );
add_action( 'save_post_book', array( $this, 'preload_mobile' ), 990, 3 );
Thanks for the question. I’ve updated the plugin FAQ with yours.