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
It might be nice to show unread post count on the browser icon. Here are examples from other extensions.
The extension has CORS access to the forum, so a snippet like this should work for getting the number of unread threads/topics.
fetch('https://forum.codeselfstudy.com/notifications.json?recent=true').then(res=>res.json()).then(json=>{constnumUnseenTopics=json['notifications'].filter(n=>n.read==false).length;console.log('number of unseen topics',numUnseenTopics);});
The text was updated successfully, but these errors were encountered:
It might be nice to show unread post count on the browser icon. Here are examples from other extensions.
The extension has CORS access to the forum, so a snippet like this should work for getting the number of unread threads/topics.
The text was updated successfully, but these errors were encountered: