keyup, keydown, keypress
是否有可能在 chrome多功能框中收听 keyevents ( )?
到目前为止,我刚刚发现:
chrome.omnibox.onInputStarted.addListener(function() {...});
chrome.omnibox.onInputChanged.addListener(function(string text, function suggest) {...});
chrome.omnibox.onInputEntered.addListener(function(string text) {...});
chrome.omnibox.onInputCancelled.addListener(function() {...});
编辑:
该onInputChanged
事件的问题在于,当用户使用箭头键导航到其中一个建议时,它不会触发。