Tips on Customizing Extended Title Remover

How to Hide the "Extended Title Remover" Admin Menu

function plt_hide_extended_title_remover_menus() {
	//Hide the "Settings → Extended Title Remover" menu.
	remove_submenu_page('options-general.php', 'etr-setting-admin');
}

add_action('admin_menu', 'plt_hide_extended_title_remover_menus', 11);

Where do I put this code?

How to Hide the "Hide Title?" Meta Box

function plt_hide_extended_title_remover_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Hide Title?" meta box.
	remove_meta_box('wpetr-hide-title', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_extended_title_remover_metaboxes', 20);