'Is it possible to hide media details sidebar when wp.media popup is being opened in wordpress?

I use wp.media({}) to opening a media upload popup, it works great but I want to hide the ATTACHMENT DETAILS side bar on the right. Are there any arguments to be passed to wp.media which could help to achieve that instead of use file_frame.on( 'open', function() {...});?

below my code, thank you.

var file_frame

file_frame = wp.media.frames.file_frame = wp.media({
title: "media upload",
button: {
text: "select",
},
library: { // remove these to show all
type: 'image', // specific mime
author: userSettings.uid, // specific user-posted attachment

    },
    multiple: "add", // set this to true for multiple file selection

});
file_frame.open();

I want wo hide the side bar of ATTACHMENT DETAILS



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source