RDS3 Assistant - Faculty Initial + Time

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

// ==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();
})();