since there seems to be pretty quick load throttling when loading multiple pages to get coverData
there 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 information
DEFAULTBACKGROUNDCOLOR 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",
}
``