Update export_rubric_scores.user.js#23
Conversation
To point to Kansas State University's Canvas URL
|
I need to change this to be able to use this at Kansas State University for my course. |
Not necessary since it already has a wildcard * for all accounts. If you want, you can edit the local script in Tampermonkey. Changing this in the original .JS would affect all other users. |
| // @namespace https://github.com/UCBoulder | ||
| // @description Export all rubric criteria scores for an assignment to a CSV | ||
| // @match https://*/courses/*/gradebook/speed_grader?* | ||
| // @match https://k-state.instructure.com/*/gradebook/speed_grader?* |
There was a problem hiding this comment.
You are removing the "courses" bit of the URL which would cause the code to not load at all.
What you might be wanting to do is
// @match https://k-state.instructure.com/courses/*/gradebook/speed_grader?*
You can easily change this at the local level or create a fork just for you. Changing this on the original code would cause issues for everyone else.
To point to Kansas State University's Canvas URL