Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/compscirocks/canvas-gradebook-days-late
Shows the number of days late directly in the Canvas gradebook
https://github.com/compscirocks/canvas-gradebook-days-late
canvas instructure-canvas tampermonkey tampermonkey-userscript
Last synced: about 1 month ago
JSON representation
Shows the number of days late directly in the Canvas gradebook
- Host: GitHub
- URL: https://github.com/compscirocks/canvas-gradebook-days-late
- Owner: CompSciRocks
- Created: 2024-10-07T16:39:13.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-16T18:59:04.000Z (3 months ago)
- Last Synced: 2024-12-06T08:36:21.818Z (about 2 months ago)
- Topics: canvas, instructure-canvas, tampermonkey, tampermonkey-userscript
- Language: JavaScript
- Homepage: https://compsci.rocks
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Days Late in Canvas Gradebook
This is a very short Tamper Monkey script that will add the number of days late inside the Canvas gradebook so that you don't have to click on each assignment to look.
![](./.github/screenshot.png)
## Installation
1. Install the Tamper Monkey extension for your browser. See [TamperMonkey.net](https://www.tampermonkey.net/) for more information.
2. Click on the Tamper Monkey icon in your browser and select "Create a new script..."
3. Copy and paste the following code into the new script.
```javascript
// ==UserScript==
// @name Days Late in Canvas Gradebook
// @namespace https://compsci.rocks
// @version 2024-10-07
// @description Adds the number of days late to the Canvas gradebook.
// @author Ryan Nutt
// @website https://compsci.rocks
// @match https://*.instructure.com/courses/*/gradebook
// @grant none
// @icon https://www.google.com/s2/favicons?sz=64&domain=compsci.rocks
// ==/UserScript==(function() {
'use strict';const script = document.createElement('script');
script.src = 'https://scripts.compsci.rocks/canvas/days-late/latest/index.js';
document.head.appendChild(script);
})();
```
4. Save the scriptThe script will always pull the latest version of the code from our CDN so you don't need to worry about updating it in Tamper Monkey.