Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion export_rubric_scores.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// @name Export Rubric Scores
// @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?*
Copy link

@aculligan aculligan Oct 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

// @grant none
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @require https://code.jquery.com/ui/1.14.1/jquery-ui.min.js
Expand Down