Sleazy Fork is available in English.

ComicRead

为漫画站增加双页阅读、翻译等优化体验的增强功能。百合会——「记录阅读历史、自动签到等」、百合会新站、动漫之家——「解锁隐藏漫画」、E-Hentai——「匹配 nhentai 漫画」、nhentai——「彻底屏蔽漫画、自动翻页」、Yurifans——「自动签到」、拷贝漫画(copymanga)——「显示最后阅读记录」、PonpomuYuri、明日方舟泰拉记事社、禁漫天堂、漫画柜(manhuagui)、漫画DB(manhuadb)、动漫屋(dm5)、绅士漫画(wnacg)、mangabz、komiic、无限动漫、新新漫画、hitomi、Anchira、kemono、nekohouse、welovemanga

< Opiniones de ComicRead

Pregunta o comentario

§
Publicado: 5/5/2024

copymanga自動進入閱讀模式失效

一定要自己手動點了再等30秒才會生效

§
Publicado: 5/5/2024
    const getImgList = async () => {
        const [, , name, , id] = window.location.pathname.split('/');
        return window.fetch(`/api/v3/comic/${name}/chapter2/${id}?platform=3`).then(res => res.json()).then(json => {
            const imgList = [];
            const {
                words,
                contents
            } = json.results.chapter;
            for (let i = 0; i < contents.length; i++) {
                imgList[words[i]] = contents[i].url.replace('.c800x.', '.c1500x.');
            }
            return imgList;
        });
    };

上面的代碼不適用移動端,手機要用GM_xmlhttpRequest修改成PC User-Agent或COPY User-Agent。

換用window.fetch可以秒獲取,但用GM_xmlhttpRequest重寫也能秒獲取。
不知道為什麼腳本封裝的xmlHttpRequest現在在copymanga會卡一段時間

§
Publicado: 6/5/2024

上面的代碼要替換,在腳本8.10.0的9183~9185行附近。

hymbzAutor
§
Publicado: 9/5/2024

已更新修复。

@tony0809 非常感谢!之前用的都是 api.copymanga.net 这样的域名,应该是因为现在改成用正常域名后的重定向导致的延时吧

Publicar respuesta

Inicia sesión para responder.