Skip to content

Instantly share code, notes, and snippets.

@alan-andrade
Last active March 31, 2021 22:01
Show Gist options
  • Save alan-andrade/31e4d2cacb5436e33a97e1d3e424c8c7 to your computer and use it in GitHub Desktop.
Save alan-andrade/31e4d2cacb5436e33a97e1d3e424c8c7 to your computer and use it in GitHub Desktop.
Jump to next hotkey
javascript:(function() {
document.onkeypress = (e) => {
if (e.key !== "n" || e.key !== "f") { return }
const xpath = "//button[contains(text(),'Save + Next Class')]";
const element = document.evaluate(xpath, window.document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
element.click();
};
alert("Hotkeys enabled. Press F or N to move forward.");
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment