☄️拷贝漫画增强☄️

拷贝漫画去广告🚫、加速访问🚀、并排布局📖、图片高度自适应↕️、辅助翻页↔️、页码显示⏱、侧边目录栏📑、暗夜模式🌙、章节评论💬

< Feedback on ☄️拷贝漫画增强☄️

Review: Good - script works

§
Posted: 06-05-2023

按照楼里的方法把10.8拷进去了,昨天还能用,今天就用不了了,大佬给解决一下吧

§
Posted: 11-05-2023

先把10.8版本的脚本下载下来,再把里面的copymanga.site都改成copymanga.tv后就可以看漫画了
但就会出现新的问题:打开漫画后点下一话或者返回目录都会回到网站首页

§
Posted: 11-05-2023

然后把加载章节这一段代码换上shashawam大佬的代码,就解决了点下一话回到网站首页的问题

// 加载章节
apiChapters(comic)
.then(function (response) {
var content = response.groups.default.chapters;
content.forEach((i) => {
if (location.href.indexOf(i.id) >= 0) {
app.cur_ch = i.index;
GM_addStyle('.el-menu>li:nth-child(' + (i.index + 1) + '){background:rgba(255,165,0,.5) !important}');
}
app.sidebar_data.push({
title: i.name,
href: 'https://www.copymanga.tv/comic/' + comic + '/chapter/' + i.id
})
})
})

§
Posted: 12-05-2023

感谢感谢~已经弄好了!

§
Posted: 15-05-2023

感谢

然后把加载章节这一段代码换上shashawam大佬的代码,就解决了点下一话回到网站首页的问题

// 加载章节
apiChapters(comic)
.then(function (response) {
var content = response.groups.default.chapters;
content.forEach((i) => {
if (location.href.indexOf(i.id) >= 0) {
app.cur_ch = i.index;
GM_addStyle('.el-menu>li:nth-child(' + (i.index + 1) + '){background:rgba(255,165,0,.5) !important}');
}
app.sidebar_data.push({
title: i.name,
href: 'https://www.copymanga.tv/comic/' + comic + '/chapter/' + i.id
})
})
})

Post reply

Sign in to post a reply.