Previews covers in mangaupdates.com when hovering over hyperlinks that lead to serie pages.
These are versions of this script where the code was updated. Show all versions.
since there seems to be pretty quick load throttling when loading multiple pages to get coverDatathere is often a need to manually update coverdata when coverPreview is not loaded properly. Visible/open coverPreview press [Key 5]For this reason auto loading of lists of coverdata is temporarily deactivated.Since i haven't found a global stylesheet class with color informationDEFAULTBACKGROUNDCOLOR and DEFAULTTITLEBACKGROUNDCOLOR set to colors i found on site (in dark mode).updated query selectors - #main_content was changed to #mu-main- updated to using attribute selectors where available to make shorter queries```"www.mangaupdates.com/series/": { [...] seriePageTitle: ".releasestitle", serieAlternativeNames: 'div[data-cy="info-box-associated"]', IMAGELINKCONTAINERS: 'div[data-cy="info-box-image"] > div > img', //instead of single element class name with dot seperated with comma[...] seriePageVotes: "#mu-main > div:nth-child(2) > div > div:nth-child(3) > div:nth-child(35)", seriePageStatus: 'div[data-cy="info-box-status"] > div > p', seriePageGenre: 'div[data-cy="info-box-genres"]', seriePageTags: 'div[data-cy="info-box-categories"] > div > div > ul', seriePageDescription: 'div[data-cy="info-box-description"] > div > div > p', serieReadingListIcon: "#listLink", //#list_image serieReadingListTitle: "#showList > div > a > u", }``
Bugfix: skip already preloaded serie data on page crawl
Quickfix spagetthi code.preloading set to ratelimit to 2s for each link.exchanged keyvalues for database from elementUrl to elementID to allow caching of preloaded pages
increased ratelimit for preloading links from 1second to 2seconds since i still see some not preloaded links because of ratelimiting
Seems like the homepage has changed their url paths.Instead of serielinks to mangaupdates.com/series.html?id=it's now mangaupdates.com/series/(randomstring?/cache?)/id
serieReadingListIcon query changed from #list_image to #listLink; readinglisticon handling changed. First check for an image. If not available check for text/emoji; dataversion update to additionally save emoji/text symbols;
changed individualpagetest from "mangaupdates.com/series.html?id=" to "series.html?id=" since individual page uses relative links to other series instead of absolute linksBugfix: ReadingListIcon/title query(serieReadingListIcon, serieReadingListTitle) were missing