I am developing a wordpress plugin. I want the plugin to work on as many wordpress installations as possible.
In order to use various js and css scripts in the plugin. I want to make use of wp_register_script( $handle, $src, $deps, $ver, $in_footer );
My doubt is that, for eg. I have to use plupload functionality. On referring the documentation. http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Link_Scripts_Only_on_a_Plugin_Administration_Screen. I found that plupload script is included under default script.
How do I determine, that the wordpress installation has the script as default. This could be for any wordpress version. so that I do not have to manually add the scripts as a part of my plugin.
Thanks in Advance