Sleazy Fork is available in English.

f95zone tweaks

f95zone exclude tags and min like filter.

< Відгуки до f95zone tweaks

Відгук: OK - script works, but has bugs

§
Опубліковано: 06.10.2024

this script works good, but the marking on latest_alpha doesnt work, but by fixing the script i got it to works now

edit this part of the script "if (['/latest', '/sam/latest_alpha']....." and replace it with this one.

if (['/latest', '/sam/latest_alpha'].some(s => location.pathname.startsWith(s))) { // latest updates
new MutationObserver(mutations => mutations.forEach(m => Array.from(m.addedNodes).filter(e => e.tagName).forEach(node => {
console.warn(node, node.children);
$find_("a.resource-tile_link", node).forEach(e => {
let _id = urlId(e.href || "");
console.log(e.href, _id);
if (_id) {
$updData(_id, e);
bookmarks[_id] && $bookmark($find('.resource-tile_info-header_title', e)); // Bookmarking
$updData(_id, $parent(e, x => x.classList.contains('resource-tile'))); // Marking fix
}
});
}))).observe(document.body, {subtree: true, childList: true});
}

Опублікувати відповідь

Sign in to post a reply.