Configure keyboard shortcuts to perform JavaScript actions on sites.
The chrome extension that lets you map keyboard shortcuts to JavaScript actions.
Using this extension requires at least some knowledge of JavaScript. Typical usage would be writing a selector to find an element on the page and calling the `#click` method on that element. For example, to add a shortcut on the Google search results page to go to the next page of results, you might map something like `alt+n` to
document.getElementById('pnnext').click()
Latest reviews
- (2023-07-27) N F: I've been looking for an extension like this every now and then for a long time, but none of them went with the javascript snippet approach. You need to be able to write simple code, but between this and developer mode in chrome, you can reliably link any element to a key press. Excellent work!