make my computer DING when chatgpt comes back from a long winded response (1 Viewer)

Isaac

Lifelong Learner
Local time
Today, 03:45
Joined
Mar 14, 2017
Messages
11,702
  1. One-click bookmarklet (simple, no install)

  • Make a new browser bookmark and set its URL to this (all on one line):
  • Code:
    javascript:(()=>{const ding=()=>new Audio('https://actions.google.com/sounds/v1/alarms/beep_short.ogg').play();const tgt=document.querySelector('main')||document.body;new MutationObserver(m=>{if(m.some(x=>x.addedNodes.length)) ding();}).observe(tgt,{childList:true,subtree:true});alert('Ding enabled for this tab—leave it open.');})();
Open ChatGPT, click the bookmark once per tab; it’ll “ding” whenever a new assistant message renders.

.......that's what Chat told me, and when I click it I DO see a confirmation that the ding is enabled, but i don't hear any ding when it comes back from a long winded reply. Anyone else get this to work?
 
  1. One-click bookmarklet (simple, no install)

  • Make a new browser bookmark and set its URL to this (all on one line):
  • Code:
    javascript:(()=>{const ding=()=>new Audio('https://actions.google.com/sounds/v1/alarms/beep_short.ogg').play();const tgt=document.querySelector('main')||document.body;new MutationObserver(m=>{if(m.some(x=>x.addedNodes.length)) ding();}).observe(tgt,{childList:true,subtree:true});alert('Ding enabled for this tab—leave it open.');})();
Open ChatGPT, click the bookmark once per tab; it’ll “ding” whenever a new assistant message renders.

.......that's what Chat told me, and when I click it I DO see a confirmation that the ding is enabled, but i don't hear any ding when it comes back from a long winded reply. Anyone else get this to work?
Have you tried enabling notifications in your browser and allow ChatGPT to notify you?
 

Users who are viewing this thread

Back
Top Bottom