Закрывает конфу в мудле как только в чате появится текст "до свидания"
当前为
// ==UserScript==
// @name Moodle AutoLeave
// @namespace https://t.me/johannmosin
// @version 0.3.2
// @description Закрывает конфу в мудле как только в чате появится текст "до свидания"
// @author Johann Mosin
// @license MIT
// @match https://*.edu.vsu.ru/html5client/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function checkText() {
var text = document.body.innerText.toLowerCase();
if (text.includes('до свидания') || text.includes('досвидания')) {
// Close the page
window.close();
}
}
setInterval(checkText, 10000);
})();