Skip to content

Instantly share code, notes, and snippets.

@acciospotatoes
Created January 20, 2022 23:58
Show Gist options
  • Save acciospotatoes/f5cb3496a7c87158da435f494328f139 to your computer and use it in GitHub Desktop.
Save acciospotatoes/f5cb3496a7c87158da435f494328f139 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Schoology Overdue Patch
// @namespace http://ah.ah
// @description Fixes that annoying overdue section which crowds the page with unnecessary content. Made by Gautam Mittal, a student on Schoology who wishes he could use Edmodo.
// @include https://nisd.schoology.com/home#/?_k=l6o7hk
// ==/UserScript==
// Notes:
// * is a wildcard character
// .tld is magic that matches all top-level domains (e.g. .com, .co.uk, .us, etc.)
console.log("You are currently using the Schoology Overdue Patch. To view which Schoology assignments are overdue, disable this extension.")
document.getElementsByClassName("overdue-submissions")[0].remove()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment