QualityHighlighter icon indicating copy to clipboard operation
QualityHighlighter copied to clipboard

Feature Request: Exclusions

Open Mansarde opened this issue 7 years ago • 1 comments

It would be neat to be able to exclude certain entries from quality control. For example, I might use two-factor authentication for a certain account for which I deem a weaker password to be ok. In such cases it would be nice if I could differentiate such entries by a special color outside of the red-to-green spectrum (e.g. blue).

Mansarde avatar Apr 30 '17 15:04 Mansarde

Same wish here. I have my Card PINs in KeePass and this PINs have 4 digits. It is not possible to make it longer or to use alpha or special characters.

I have made a code change for a workaround. Because PINs of cards do not have a username I have choosen the username PIN and in the code I use a different color for all PINs:

private Color PinColor = Color.LightGreen; ... if (userName != null && userName.ReadString() == "PIN") lvi.BackColor = PinColor; ...

It would be nice to configure the qualities in some way and to find a way to exclude entries, eg. a regex for the title and/or user name?

thomschu avatar Jan 09 '19 08:01 thomschu