4

Is there a way to add hotkeys (such as the media buttons) for the webbrowser?

This would need to cause a javascript event.

I except a firefox extension is required and i am ok if the solution requires greasemonkey as well (i seen growl use them both for javascript interaction. But thats javascript->pc not the other way around)

-edit- is this not possible ATM?

4

1 回答 1

2

Firefox 支持称为AppCommand事件的东西。在 Windows 和 Linux 上,仅支持 7 个命令:Back、Forward、Reload、Stop、Search、Bookmarks 和 Home。

要实现额外的命令,必须将支持的命令添加到widget/src/windows/nsWindow.cppwidget/src/gtk2/nsWindow.cpp生成这些额外类型的 AppCommand 事件。然后这些事件可以被扩展拦截以执行自定义操作。

在 Android 上,支持一组不同的事件:Clear、VolumeUp、VolumeDown、Menu、Search。我不知道 Fennec 是否使用了这些事件。

为了完整起见,Firefox 的 OS/2 版本支持 Back、Forward、Reload 和 Stop。

于 2011-01-19T00:32:30.783 回答