Debug Bar List Script & Style Dependencies is an add-on to WordPress Debug Bar
As of April 2026, Debug Bar List Script & Style Dependencies is a WordPress debug plugin with 200 active installations and a 5/5 rating from 3 reviews. It has been downloaded 88K+ times in total. Requires WordPress 3.4+ and PHP false+. Available on WordPress.org since 2013. Last updated 9 years ago — may have compatibility concerns. Top alternative: WP Crontrol.
We all know that when we’re add a script or style to WordPress, we should use wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer ) and wp_enqueue_style( $handle, $src, $deps, $ver, $media ) as in:
function themeslug_enqueue_style() {
wp_enqueue_style( 'core', 'style.css', array('twentytwelve-style') );
}
function themeslug_enqueue_script() {
wp_enqueue_script( 'my-js', 'filename.js', array('jquery') );
}
add_action( 'wp_enqueue_scripts', 'themeslug_enqueue_style' );
add_action( 'wp_enqueue_scripts', 'themeslug_enqueue_script' )
$deps (dependencies), the handle name and an optional parameter, lets you control when/where your script or style should be added. If $deps is array('jquery'), your script will be loaded after jquery is loaded.
The problem is, which one exis…
| WordPress | 3.4+ requiredTested up to 4.7.33 |
| PHP | false+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.