Last active
August 22, 2020 04:05
-
-
Save hkamran80/2a7676a816564832588fde7b43516eba to your computer and use it in GitHub Desktop.
FuelEd Brightspace Keystroke
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name FuelEd Keystroke | |
// @namespace https://hkamran.com | |
// @version 1.0.1 | |
// @description Keystroke for FuelEd | |
// @author H. Kamran | |
// @downloadUrl https://gist.github.com/hkamran80/2a7676a816564832588fde7b43516eba/raw/fueled.user.js | |
// @updateUrl https://gist.github.com/hkamran80/2a7676a816564832588fde7b43516eba/raw/fueled.user.js | |
// @match https://fueled.brightspace.com/* | |
// @grant none | |
// ==/UserScript== | |
function pagination(e) { | |
var evtobj = window.event? event : e | |
if (evtobj.keyCode == 78 && evtobj.shiftKey) { | |
// Next Page Keystroke (Shift + N) | |
document.querySelector("button.next-activity").click(); | |
} | |
} | |
document.onkeydown = pagination; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment