AnkiWeb: Click anywhere on the screen to play audio

AnkiWeb: Click anywhere on the browser to play the audio sound

// ==UserScript==
// @name         AnkiWeb: Click anywhere on the screen to play audio
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  AnkiWeb: Click anywhere on the browser to play the audio sound
// @author       MKL
// @match        https://ankiuser.net/study/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ankiuser.net
// @grant        none
// @license      MKL
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(
      function () {
          document.addEventListener('click', audioPlay);
          function audioPlay() {
              const audio = document.querySelector("audio");
              if (audio.paused) {
                  audio.play();
              }else{
                  audio.currentTime = 0
              }
          }

      },
      1000
    );
})();