ComicRead

Добавляет расширенные функции для удобства на сайт, такие как двухстраничный режим и перевод.

< Обсуждения ComicRead

Отзыв: Хороший — скрипт работает как нужно

作者您好,拷贝漫画有几百部漫画因为版权问题下架了但下架漫画在热辣漫画还可以阅读,我请求您也给热辣漫画增加双页阅读,万分感谢

熱辣漫畫API

需要用GM_xmlhttpRequest

(() => {
    'use strict';

    const xhr = (url, details = {}) => {
        return new Promise((resolve, reject) => {
            GM_xmlhttpRequest({
                method: "GET",
                url: url,
                responseType: "text",
                headers: {
                    "Referer": unsafeWindow.location.href,
                    "User-Agent": unsafeWindow.navigator.userAgent
                },
                onload: data => {
                    resolve(data.response);
                },
                onerror: error => {
                    reject(error)
                },
                ...details
            });
        });
    };
    unsafeWindow.xhr = xhr;

})();

let get = () => {
    let [, , word, , id] = window.location.pathname.split("/");
    let api = `https://mapi.fgjfghkk.club/api/v3/comic/${word}/chapter/${id}?platform=1&_update=true`;
    return window.xhr(api, {
        responseType: "json"
    }).then(json => json.results.chapter.contents.map(e => e.url.replace(".h800x.", ".h1500x.")));
};
get();

大佬您好,我没学过编程,恕我愚钝,我看不懂您发的代码以及使用方法,如果您有空的时候,还请写给我详细教程

大佬您好,我没学过编程,恕我愚钝,我看不懂您发的代码以及使用方法,如果您有空的时候,还请写给我详细教程

代码是提供给作者参考用的,如果需要简易的双页阅读,可以先用我的脚本图片全载顶一下,有支持热辣漫画。
https://greasyfork.org/scripts/463305

关掉自动聚图,开启自动进入影子画廊,画廊滚轮操作选切换图片,进入影子画廊后选右至左模式,这样就能用滚轮看日漫了。

多谢大佬

hymbzАвтор
§
Создано: 01.10.2024

可以使用脚本的简易阅读模式功能来支持

可以使用脚本的简易阅读模式功能来支持

作者您好,问题是这个脚本在热辣漫画网页启用不了

// #[熱辣漫畫](https://www.relamanhua.org/)
case 'relamanhua.org':
case 'www.relamanhua.org':
case 'www.2024manga.com':
{
    if (!window.location.pathname.includes('/chapter/') && !document.querySelector('.disData[contentkey]')) break;
    const getImgList = async () => {
        const [, , word, , id] = window.location.pathname.split("/");
        const api = `https://mapi.fgjfghkk.club/api/v3/comic/${word}/chapter/${id}?platform=1&_update=true`;
        const res = await main.request(api, {
            responseType: 'json'
        });
        return res.response.results.chapter.contents.map(e => e.url.replace(".h800x.", ".h1500x."));
    };
    options = {
        name: 'relamanhua',
        getImgList,
        onNext: helper.querySelectorClick('.comicContent-next a:not(.prev-null)'),
        onPrev: helper.querySelectorClick('.comicContent-prev:not(.index,.list) a:not(.prev-null)')
    };
    break;
}

找地方把规则加进去,例如

// #[無限動漫](https://www.comicabc.com)

的后面

hymbzАвтор
§
Создано: 04.10.2024

@tony0809 非常感谢!更新加上了

Ответить

Войдите, чтобы ответить.