Videos
Accessing past "at a glance" notifications - Google Pixel Community
Latest Google Pixel update finally fixes notification history
What was wrong with it, I never had a problem.
More on reddit.comIs there a way I can check my notifications after I dismissed them?
Notification history
Subbing because I really want to know the answer too...
More on reddit.comSometimes I check my phone in the morning and I see a ton of notifications. I quickly dismiss all of them but I start to wonder if I got an important notification and wished I could un-dismiss them. Is there a way I can check my previous notifications?
If you have a Mac, there is a way!
Here's how the notifications list would look like:
All you have to do is:
1. In chrome, go to:
chrome://flags/
2. Look for:
Enable native notifications. Mac
3. Enable it, restart chrome, you are done. Enjoy!
EDIT:
- You might not need to do the above anymore.
Starting in Chrome 59, notifications sent via the Notifications API or the chrome.notifications extensions API will be shown directly by the macOS native notification system instead of Chrome's own system. [source]
- Test your notifications: https://web-push-book.gauntface.com/demos/notification-examples/
On MacOSX you will have Chrome directory located in Library/Application Support. Open terminal application and run next commands:
cd ~/Library/Application\ Support/Google/Chrome/Default/Platform\ Notifications/
ls -la
On Gnu/Linux (at least on Linux Mint), similarly you can find the log file(s) in /home/user/.config/google-chrome/Profile 1/Platform Notifications/ – jdmayfield
Now you will see files like this:
drwx------@ 7 visi staff 224 Jul 13 18:16 .
drwx------ 75 visi staff 2400 Jul 15 11:05 ..
-rw-------@ 1 visi staff 759 Jul 15 10:57 000003.log
-rw-------@ 1 visi staff 16 Jul 13 18:16 CURRENT
-rw-------@ 1 visi staff 0 Jul 13 18:16 LOCK
-rw-------@ 1 visi staff 147 Jul 13 18:16 LOG
-rw-------@ 1 visi staff 41 Jul 13 18:16 MANIFEST-000001
You can see the most recent one is 000003.log, so check it by next command:
tail -n 100 000003.log
And you will see last 100 items from this log. Then you can open chrome settings and disable that website notification.
Note that if you have several profiles in chrome, your path can be different, like this (Profile1 instead of Default):
cd ~/Library/Application\ Support/Google/Chrome/Profile\ 1/Platform\ Notifications/