RDS3 Assistant - Faculty Initial + Time

Show time/faculty, enhance search, remove courses by prefix, Update data to rds2.northsouth.app

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         RDS3 Assistant - Faculty Initial + Time
// @namespace    https://northsouth.app/
// @version      2.2
// @description  Show time/faculty, enhance search, remove courses by prefix, Update data to rds2.northsouth.app
// @author       Nihal, Rayed & Walid - NSU CTRL ALT DELETE (NSU - CSE231)
// @match        https://rds3.northsouth.edu/*
// @match        https://rds3.northsouth.edu/students/*
// @match        https://rds3.northsouth.edu/students/advising*
// @match        https://rds3.northsouth.edu/index.php/students/advising
// @icon         https://rds3.northsouth.edu/assets/img/favicon.png
// @grant        GM_xmlhttpRequest
// @grant        GM_getValue
// @grant        GM_setValue
// @grant        unsafeWindow
// @license      MIT
// ==/UserScript==

// Function to show advising is over
function showAdvisingOver() {
	console.log('Advising for Fall 2025 is over. Thanks for your contribution!');
}

// Execute automatically as Tampermonkey userscript
(function() {
	showAdvisingOver();
})();