You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When working on reductions/triaging it's annoying to have to constantly go back and forth across the versions. It would be nice to insert the information that we have at the current caret position on a keyboard combo.
This isn't really high pri and has a few interesting questions regarding how best to implement it:
Content script is necessary to capture keyboard events on the current document (unless someone knows about an event that I don't - which is entirely possible), is there any issues with this?
Should we duplicate the code of the finding the browser version information displayed to the user or should we do messaging and convert the current logic to a method?
What keyboard combination is useful but uncommon across sites as to not have conflicts?
After the user presses the keyboard combo (tentatively choosing Ctrl+Shift+V) it will find the current caret position utilizing selection.createRange() to insert the OS/Version content into the text area.
The text was updated successfully, but these errors were encountered:
When working on reductions/triaging it's annoying to have to constantly go back and forth across the versions. It would be nice to insert the information that we have at the current caret position on a keyboard combo.
This isn't really high pri and has a few interesting questions regarding how best to implement it:
After the user presses the keyboard combo (tentatively choosing Ctrl+Shift+V) it will find the current caret position utilizing
selection.createRange()
to insert the OS/Version content into the text area.The text was updated successfully, but these errors were encountered: