Hi @vpsinghbe!
Thanks for your query. Yes, it’s possible. I have added the following hooks in v1.0.7. Please wait for the update. Thanks!
add_action('wp_dropzone_before_upload_file', function($file) {
error_log(print_r($file,1));
});
add_action('wp_dropzone_after_upload_file', function($file) {
error_log(print_r($file,1));
});
add_action('wp_dropzone_after_insert_attachment', function($attachment_id) {
error_log(print_r($attachment_id,1));
});