Deregister scripts from plugin

There’s a much better and more reliable way than naming your plugin “ZZ” – use a delayed hook on plugins_loaded, which fires after all plugins are loaded:

function wpse_191178_plugins_loaded() {
    // Do your stuff
}

add_action( 'plugins_loaded', 'wpse_191178_plugins_loaded', 100 );