// do not show the preferences drop down
// Select the element using its class
var element = document.querySelector('.col-span-9.md\\:col-span-3');
// Check if the element exists and remove it
if (element) {
element.parentNode.removeChild(element);
} else {
console.log('Element not found');
}