Skip to content

Instantly share code, notes, and snippets.

@gmittal
Created May 26, 2015 21:11
Show Gist options
  • Save gmittal/b13a8bd3f39a6cdc3b13 to your computer and use it in GitHub Desktop.
Save gmittal/b13a8bd3f39a6cdc3b13 to your computer and use it in GitHub Desktop.
Schoology Overdue Patch User Script
// ==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://pausd.schoology.com/home
// ==/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