Hi I am writing an extension that allows password and other data to be entered on input fields, by picking a context menu option created with contexts: [“editable”].
This works fine for input fields, but the menu option does not appear when right clicking on a field.
Thus I seem to have to use contexts: [“all”] which means the menu also appears when clicking on a non input capable element which is confusing.
I seem to recall that this once worked (some years back) - is this an oversight or am I missing something?
[quote="juraj.masiar, post:4, topic:84584]
Anyway, so select doesn’t count as editable, which makes sense I guess…
[/quote]
I disagree - a .
Thus I am forced to use contexts: [“all”] which means the menu also appears when clicking on a non input capable element. This looks weird and I cannot see an other way to avoid it.
[quote="freaktechnik, post:7, topic:84584]
You can hide/show the item during menus.onShown - Mozilla | MDN
[/quote]
I did not notice that possibility and will give that a go
Thank you