The solution will be something like this i suppouse, the file i modify is admin/menu.php
at the line 100 where is asked if is_admin you have to modify and put something like:
function xyz_cfm_add_admin_scripts()
{
wp_enqueue_script('jquery');
wp_register_script( 'xyz_notice_script', plugins_url('contact-form-manager/js/notice.js') );
wp_enqueue_script( 'xyz_notice_script' );
wp_register_script( 'xyz_tooltip_script', plugins_url('contact-form-manager/js/tooltip.js') );
wp_enqueue_script( 'xyz_tooltip_script' );
}
add_action("admin_enqueue_scripts","xyz_cfm_add_admin_scripts");
and if you want jquery too you may have to do this:
function xyz_cfm_add_scripts()
{
wp_enqueue_script('jquery');
}
add_action("wp_enqueue_scripts","xyz_cfm_add_scripts");