Greasy Fork is available in English.

Keep Session Alive for McGraw-Hill Education

Simulate activity to keep session alive on learning.mheducation.com

// ==UserScript==
// @name         Keep Session Alive for McGraw-Hill Education
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Simulate activity to keep session alive on learning.mheducation.com
// @match        https://learning.mheducation.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        // Simulate a mouse move event
        document.body.dispatchEvent(new MouseEvent('mousemove', { bubbles: true }));
    }, 10000); // Every 10 seconds
})();