anti kahoot notifications

removes kahoot notifications (hide annoying player limit)

  1. // ==UserScript==
  2. // @name anti kahoot notifications
  3. // @version 1.0
  4. // @description removes kahoot notifications (hide annoying player limit)
  5. // @author epicmines33
  6. // @match *://play.kahoot.it/*
  7. // @exclude *://play.kahoot.it/v2/assets/*
  8. // @grant none
  9. // @run-at document-start
  10. // @namespace https://greasyfork.org/users/292729
  11. // ==/UserScript==
  12.  
  13. setInterval(() => {
  14. var closeButton = document.querySelector(`[data-functional-selector="notification-bar-close-button"]`)
  15. if (closeButton) {closeButton.click()}
  16. }, 1000)