Sleazy Fork is available in English.

绅士会所解锁老绅士

找不到上车地址?直接安装一键上车!

// ==UserScript==
// @name         绅士会所解锁老绅士
// @namespace    http://tampermonkey.net/
// @version      0.1
// @license MIT
// @description  找不到上车地址?直接安装一键上车!
// @author       ClarkQAQ
// @match        http*://*/archives/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let downloadBtn = document.getElementById("dl-box");
    if (downloadBtn) {
        downloadBtn.setAttribute("style", "")
    }
})();