Since there seems to be no solution here, I have added a small function to function.php. This allows you to avoid loading the two assets (script and CSS) and thus also jquery.js.
Here is the script (insert in Theme > functions.php):
// disable Email Encoder style/js
function tba_disable_scripts_styles() {
wp_dequeue_style('eeb-css-frontend');
wp_dequeue_script('eeb-js-frontend');
}
add_action('wp_enqueue_scripts', 'tba_disable_scripts_styles', 100);