It is 'Personal Information Protection' plugin that filters personal information such as residential registration number, email address and phone number and masks them with '*'.

How to Use

Loading Plugin File

<link rel="stylesheet" href="URL of personalDataProtection.min.css">
<script src="URL of personalDataProtection.min.js"></script>

UI

You may add the button to toolbar and menu with 'personalDataProtection', the name of the plugin.

Adding to Toolbar

//...
'editor.toolbar': [
	//...,
	'personalDataProtection',
	//...
],
// ...

Adding to Menu

//...
'editor.menu.definition': {
	//...,
	'tools': [
		//...,
		'personalDataProtection',
		//...
	],
	//...
},
//...