Cloud Connect New Project Alert Voice

Scans the page every 4000ms and plays a voice that say "New task on Cloud connect" if the words "New Project" are detected anywhere on the page

// ==UserScript==
// @name         Cloud Connect New Project Alert Voice
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Scans the page every 4000ms and plays a voice that say "New task on Cloud connect" if the words "New Project" are detected anywhere on the page
// @match        https://connect.cloudresearch.com/*/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        if (document.body.innerText.includes("New Project")) {
            var msg = new SpeechSynthesisUtterance("New task on Cloud connect");
            window.speechSynthesis.speak(msg);
        }
    }, 4000);
})();