f95zone tweaks

f95zone exclude tags and min like filter.

< Feedback on f95zone tweaks

Review: ठीक - स्क्रिप्ट चालते, पण त्यात बग आहेत

§
पोस्ट केले: 2024-10-06

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});
}

उत्तर पोस्ट करा

उत्तर पोस्ट करण्यासाठी साइन इन करा.