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
I can filter new mangas by executing js in the console. such as
document.querySelectorAll('label').forEach(label => {
if (label.textContent.includes('🆕')) {
label.previousElementSibling.checked = true;
}
});
Activity