Site icon Hip-Hop Website Design and Development

How do I show the deal with for all front-end enqueued scripts in plugin choices web page?

I take advantage of the next operate in my plugin to show all of the scripts handles in my plugin choices web page however it show solely the handles of admin scripts:

operate my_detected_scripts() {
  international $wp_scripts;
  foreach( $wp_scripts->queue as $deal with ) :
    echo $deal with . ' <br /> ';
  endforeach;
}

Then:

echo my_detected_scripts()

How can get the handles of all front-end enqueued scripts solely?

Thanks prematurely!