colab-notifier
colab-notifier copied to clipboard
Not working for me
This not working, no sound, no message.
client os: Mac OS
Hi,
could you provide the error message that you are getting? Have a look at chrome://extensions/ in chrome. Thank you!
no any errors even info in extension's background page.
You do know that the cells have to run 15 mins by default before you get a notification? Enter 1 as the threshold and then run a cell with the following content:
from time import sleep
sleep(60)
Let me know if it still is not working.
Yes, that is what I’ve done.
Interesting.. Did you install the extension from the google web store?
Try deinstalling and installing again using chrome web store.
I tried to install from CWS again, but still not working.
Chrome version: 80.0.3987.163
Within the extension, press on "sound" and "message". Do you see or hear anything?
They are performing normally.
I found the reason, this only supports English environment:
mutation.target.title.includes('Interrupt execution')
I change mine to:
mutation.target.title.includes('中断执行')
It works now! Thanks
A small issue:
const runningCellObserverConfig = { attributes: true, hildList: true, subtree: true };
'hildList' spelling mistake
Two small suggestions:
1.support float time format, cancel inputformat check, as input tag will do that. 2.If you add support for Chinese, may be more users will benefit from this extension.
Thanks again!
Cool! I'll have a look, thanks!