Sleazy Fork is available in English.

Exhentai公共账号

替换Exhentai的cookie,自动登录

Versión del día 7/5/2023. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name           Exhentai公共账号
// @description    替换Exhentai的cookie,自动登录
// @version        1.3.1
// @author         福尔魔猪
// @icon           https://exhentai.org/favicon.ico
// @match          *://*.exhentai.org/*
// @match          *://exhentai.org/
// @license        MIT
// @namespace      https://greasyfork.org/users/1072365
// ==/UserScript==
(function(){
    'use strict';
    if (location.host == 'exhentai.org' && document.cookie.split(';').length < 3) {
        var expireDate = new Date();
        expireDate.setFullYear(expireDate.getFullYear() + 100);
        document.cookie = "ipb_member_id=7013610; expires=" + expireDate.toUTCString();
        document.cookie = "ipb_pass_hash=1ff72e5df8f1949f2b48b49748432eca; expires=" + expireDate.toUTCString();
        document.cookie = "igneous=298743a95; expires=" + expireDate.toUTCString();
        window.location = window.location.href;
    }
})();