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;
}
});
I hope to add it to the page functions.
The text was updated successfully, but these errors were encountered:
I'm planning to eventually improve the batch selection experience via #570, but I wouldn't mind approving a PR with this short improvement in the interim.
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;
}
});
I hope to add it to the page functions.
The text was updated successfully, but these errors were encountered: