mangaupdates Cover Preview

Previews covers in mangaupdates.com when hovering over hyperlinks that lead to serie pages.

当前为 2020-11-20 提交的版本,查看 最新版本

作者
sz
评分
0 0 0
版本
1.6.0
创建于
2017-01-14
更新于
2020-11-20
大小
49.0 KB
许可证
http://creativecommons.org/licenses/by-nc-sa/4.0/
适用于

Derivate of novelupdate Cover Preview based on Version 1.6 with different starting variables https://gf.qytechs.cn/scripts/26439-novelupdates-cover-preview/ Now Shows Cover Previews on mangaupdates

// ==UserScript== // https://gf.qytechs.cn/scripts/26439-novelupdates-cover-preview/ // @name mangaupdates Cover Preview dev // @namespace szMangaupdatesCoverPreview // @include https://www.mangaupdates.com/* // @include http://www.mangaupdates.com/* // @version 1.6.0 // @description Previews covers in mangaupdates.com when hovering over hyperlinks that lead to serie pages. // @inject-into content // @grant GM_xmlhttpRequest // @grant GM_addStyle // @grant GM_setValue // @grant GM_getValue // @grant GM_deleteValue // @grant GM_listValues // @run-at document-end // @license http://creativecommons.org/licenses/by-nc-sa/4.0/ // ==/UserScript== const MAXCACHEAGE = 7 * 24 * 60 * 60 * 1000; // Max Age before Cached data gets overridden with current data. Max Age is 3 day in milliseconds //days * h * min * sec * ms let STYLESHEETHIJACKFORBACKGROUND = ".frow2"; //if unknown set empty ""; classname with leading dot let STYLESHEETHIJACKFORTITLE = '.small_bold, .side_content_row'; //if unknown set empty ""; classname with leading dot seperated by comma const DEFAULTTITLEBACKGROUNDCOLOR = '#2c3e50'; //if no hijack class style available use plain color const DEFAULTBACKGROUNDCOLOR = '#ccc'; //if no hijack class style available use plain color const PREDIFINEDNATIVTITLE = "Click for series info, Series Info"; //forum, index const INDIVIDUALPAGETEST = "https://www.mangaupdates.com/series.html?id=" // /series.html\?id=[0-9]*$/; const IMAGELINKCONTAINERS = '.sContent img'; //instead of single element class name with dot const IMAGEBLOCKER = "images/stat_increase.gif, images/stat_decrease.gif"; const CONTAINERNUMBER = 0; const seriePageTitle = ".releasestitle " //.seriestitlenu const seriePageVotes = "#main_content > div:nth-child(2) > div > div:nth-child(3) > div:nth-child(35)" //.seriesother > .uvotes const seriePageStatus = "#main_content > div:nth-child(2) > div > div:nth-child(3) > div:nth-child(20)" //#editstatus const seriePageGenre = "#main_content > div:nth-child(2) > div > div:nth-child(4) > div:nth-child(5)" //#seriesgenre const seriePageTags = "#main_content > div:nth-child(2) > div > div:nth-child(4) > div:nth-child(8) ul" //#showtags const isOnIndex = this.location.href == "https://www.mangaupdates.com/" || this.location.href.startsWith("https://www.mangaupdates.com/releases.html") == 1

const preloadUrlRequests = false; const preloadImages = false; //^^^^ frontend settings over this line ^^^^

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址