Greasy Fork is available in English.

wulihun auto login

cause I'm busy

Pada tanggal 19 April 2019. Lihat %(latest_version_link).

// ==UserScript==
// @name         wulihun auto login
// @namespace    http://www.wulihub.com.cn/
// @version      1.0
// @description  cause I'm busy
// @author       Lennon
// @match        *.wulihub.com.cn/*
// @require      http://code.jquery.com/jquery-2.1.1.min.js
// @run-at       document-end
// @icon         http://www.wulihub.com.cn/favicon.png
// ==/UserScript==
(function() {
    'use strict';

    setTimeout(function () {
        var elementPassword = $('input[name="password"]');
        var elementButton = $('input[value="访问"]');
        if(!elementPassword.val() || !elementButton.length){
            return false;
        }

        elementButton.click();
    }, 800);
})();