-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Waterfox G6/Firefox 115 - Popup notifications no longer working #665
Comments
Tested on fresh install of regular ESR 115 Firefox as well. |
I tried 115 ESR and it works for me. Try the "inspect" button on |
You are getting the actual preview message popup from the icon? I get the popup if I click, but not the one that used to come up automatically when new email arrived before hiding itself. I get this in one of the machines before even clicking inspect.
The other two don't have an error, but also doesn't show the popup preview. When clicking inspect, which options am I looking at for an error? |
Very odd. I'm guessing mine being 64bit shouldn't make a difference? This is what I get
I also found it odd that it says this under the notification section: Show desktop notification for (in seconds): This option may not work based on your OS. |
Let's see if you can use the native API to generate a notification. On the console tab, paste the following code: chrome.notifications.create({
type: 'basic',
iconUrl: '/data/icons/notification/48.png',
title: 'Title',
message: 'Message body'
}); |
Doesn't seem to do anything If done in the main console
If done on the page you mentioned before with inspect Waterfox
Firefox
|
This is the standard method for triggering notifications from an extension. If it doesn't work, it's likely that none of your extensions will be able to generate desktop notifications. You need to run it in the console of the extension (inspect => console tab). |
No other extension I use generates a desktop notification. I'm guessing that means the notification method was changed to no longer use the browser itself for the window? I have my machines pretty locked down in regards to what they can do, so if it is trying to make a system call to windows for the notification that might explain things. I ran it from the console of the extension, which is what gave me the messages on the second section from above.
|
Firefox is compatible with extensions using both Manifest V3 and V2. The notifier has been updated to use manifest V3. To test if other extensions can create desktop notifications, you can try running the code I provided in their console tabs. It's probable that many of these extensions are still operating on manifest V2. |
Sorry, I meant I don't use any other extensions that generate notifications, since you said this is the standard method. So I cannot test if it is only an issue with this one. |
The problem is the notifier generates notification using chrome.notifications.create({
type: 'basic',
iconUrl: '/data/icons/notification/48.png',
title: 'Title',
message: 'Message body'
}); and based on your tests, even when you run the code manually you dont get notifications. So there is no error from the notifier side. You can also try the browser console |
I get this
Same thing when I force a refresh of the extension. |
Well, I did find the issue - had to right click on the notification center in the bottom right corner and enable notifications. I always have notifications disabled for windows itself. Now I get the gmail notification, but it also plays two sound files. I'm guessing this is what the other thread meant when it said going back to the old style. I really hope there is a possibility of having things how they have been up until this point where it just pops up the preview from the icon - the same way is does when clicking it. |
Also discovered something else during all this testing. The windows notifications can be disabled and things go back to showing in the browser, though not as nice as previous versions. For anyone else who ends up with this issue, here is how to fix it (Maybe could include this for people who don't like the new style?) Open about:config Can go back to having windows notifications disabled. |
When a new email arrives, there is no longer a popup with the details in the lower corner - only the email count.
Clicking on the icon still shows the preview just fine.
Worked fine on Waterfox G5/Firefox 102 yesterday, before upgrading.
Reset notifier settings, but no change. Tested on two machines.
The text was updated successfully, but these errors were encountered: