jQuery(document).ready(function(){
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation){
for(var i =0;i < mutation.addedNodes.length;i++){
if($("[id*='itemsFilterPanel']").length) {
if(jQuery(mutation.addedNodes[i]).find("sp-object-suggest[sp-button-aria-label='Role Type']").length)
{
$("sp-object-suggest[sp-button-aria-label='Role Type']").parent().parent().parent().hide();
}
if(jQuery(mutation.addedNodes[i]).find("sp-object-multi-suggest[sp-button-aria-label='Entitlement Attribute']").length)
{
$("sp-object-multi-suggest[sp-button-aria-label='Entitlement Attribute']").parent().parent().parent().hide();
}
if(jQuery(mutation.addedNodes[i]).find("sp-object-suggest[sp-button-aria-label='Entitlement Owner']").length)
{
$("sp-object-suggest[sp-button-aria-label='Entitlement Owner']").parent().parent().parent().hide();
}
}
}
});
});
observer.observe(document,{childList:true,subtree:true,attributes:false});
});
]create the zip folder with the above structure and install the same as the plugin in UI. Login into Identity IQ --> Gear --> Plugins -->New -->Drag and drop a file or click in this box to install a plugin Once we have installed logout and login and see the changes. Below UI shows and has hidden the required attributes.