Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request. More granular Extension's hotkeys scope #683

Open
InsaneDoggo opened this issue Sep 11, 2024 · 6 comments
Open

Feature request. More granular Extension's hotkeys scope #683

InsaneDoggo opened this issue Sep 11, 2024 · 6 comments
Labels
enhancement Enhancement or change to an existing feature needs-triage: chrome Chrome needs to assess this issue for the first time needs-triage: firefox Firefox needs to assess this issue for the first time neutral: safari Not opposed or supportive from Safari topic: commands

Comments

@InsaneDoggo
Copy link

Would be nice to be able to limit hotkey' scope (i.e. where it can be triggered).

Example: (chrome-related terminology) I'm using "chrome.commands" API to control embedded player via "content scripts", to seek forward/backward by Ctrl + Left/Right arrow keys to be precise. This extension is supposed to work on specific URL. Arrows is very convenient and intuitive keys for mentioned player's actions so I don't want to use some weird/complex shortcut combos, at the same time I don't want those hotkeys to override my usual "browser experience" on other tabs/URLs e.g. while typing in search bar etc.

Possible solutions:

  1. Config in Manifest to limit scope to "active tab" + [optional] match specific URLs e.g. https://foo.bar/
  2. Provide API to invoke default implementation. e.g. as an extra callable parameter in "chrome.commands.onCommand.addListener".
@github-actions github-actions bot added needs-triage: chrome Chrome needs to assess this issue for the first time needs-triage: firefox Firefox needs to assess this issue for the first time needs-triage: safari Safari needs to assess this issue for the first time labels Sep 11, 2024
@oliverdunk
Copy link
Member

Related Chromium issue: https://issues.chromium.org/issues/364821285

@hanguokai
Copy link
Member

If you use the content script to control the shortcut behavior on the active tab, besides browser.commands, you can also use Web page shortcut methods, e.g. document or element (player in your example) .addEventListener("keydown", listener), which supports arrow keys.

@InsaneDoggo
Copy link
Author

InsaneDoggo commented Sep 12, 2024

@hanguokai yeah, it's one of the workarounds, although Extension's shortcuts is more convenient, e.g. chrome has dedicated "all shortcuts page" to be managed by user. Also IIRC "keydown approach" requires element/iframe to be in focus, which may be not intended behavior.

Moreover case with player is just an example, I believe there are more use cases for "hotkey scopes" feature. No to mention that "foo.bar site companion" is very popular type of extensions. We already has option to limit extension's access to page's content by URL patterns, which improves User's trust. So it feels natural that other browser' features also would support scopes.

@xeenon
Copy link
Collaborator

xeenon commented Sep 12, 2024

Do you need the page to have keyboard focus or are you looking for the commands to be app global still?

@InsaneDoggo
Copy link
Author

@xeenon well, it depends, e.g. in future I may decide to support "Picture in Picture" mode which is beyond "page-only" scope. I would prefer to not focus on my specific case. I can describe my vision on this issue, consider following scenarios:

  1. Global shortcuts (already implemented)
  2. Scope limited to "active/focused tab" + some "static filters/patterns" defined in manifest. Browser should be able to decide on it's own whether to call user's handlers. (not implemented)
  3. Global + advanced filtering: user's code decides whether to handle/consume shortcut event. (not implemented)
    3.1. by returning true/false (isConsumed)
    3.2. by invokable argument defaultHandler()
    Note: command handler's "ability to answer" may be limited to current frame/tick and "service.js" environment. Developers can maintain some state inside service.js so they can always decide about "consuming" shortcut event.

@Rob--W
Copy link
Member

Rob--W commented Sep 13, 2024

This topic was discussed at yesterday's WECG meeting, with the notes recorded at https://github.com/w3c/webextensions/blob/main/_minutes/2024-09-12-wecg.md#meeting-notes.

During the meeting, a suggestion was raised to allow restriction of shortcuts to specific contexts, but still reserve the shortcut. That doesn't seem to solve your feature request, where the primary goal is to allow others to use the shortcut if the extension does not use it.

Currently, extensions (and web pages) that want to handle shortcuts can intercept them from a content script or an extension document. In a comment above (#683 (comment)), you expressed that you don't want to use it because the commands API has some integration in browser UI (shortcut management page).

While the browser would be in a better position than extensions to resolve conflicts with multiple shortcut registrations, it lacks any context to offer a good resolution. During the meeting, concerns were raised about the complexity of implementing the requested capability.

It would be nice to have a standardized way to handle the behavior when multiple extensions register the same shortcut. The current behavior pretty much boils down to "whoever registered the shortcut first wins", which can also cause confusion, e.g. a recent bug report in Firefox is at https://bugzilla.mozilla.org/show_bug.cgi?id=1911798.

@dotproto dotproto added topic: commands enhancement Enhancement or change to an existing feature labels Sep 17, 2024
@xeenon xeenon added neutral: safari Not opposed or supportive from Safari and removed needs-triage: safari Safari needs to assess this issue for the first time labels Sep 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Enhancement or change to an existing feature needs-triage: chrome Chrome needs to assess this issue for the first time needs-triage: firefox Firefox needs to assess this issue for the first time neutral: safari Not opposed or supportive from Safari topic: commands
Projects
None yet
Development

No branches or pull requests

6 participants