You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The extension only shows unread count on the badge.
People might also want to get a notification for unread content.
It can be helpful to add an option for users to receive notifications of unread content.
[Possible way to implement]
add a notification toggle in src/options.html and save the toggle to localstorge
in src/utils/queries.js when querying GET_USER_UNREAD, query not only summaries but also contents.
in src/background.jscheck unread contents and notify user if necessary
query unread contents
check if user turned on notifications, if turned on, send user notifications and save notification time(used to decide if a notification is already sent in the next check)
The extension only shows unread count on the badge.
People might also want to get a notification for unread content.
It can be helpful to add an option for users to receive notifications of unread content.
[Possible way to implement]
src/options.html
and save the toggle to localstorgesrc/utils/queries.js
when queryingGET_USER_UNREAD
, query not only summaries but also contents.src/background.js
check unread contents and notify user if necessaryRef
The text was updated successfully, but these errors were encountered: