Modification of plugin’s hooks and actions regardless of load order.

To have access to all other plugins hooks, we need run our script when wordpress done loading plugin.
Use following workaround.

Place your hooks in to the function, and call it when plugins_loaded.

add_action('plugins_loaded','modify_actions_custom');

function modify_actions_custom(){

}

Reference:
WordPress Codex with loading structure.