Greasy Fork

Greasy Fork is available in English.

金斧子网删除

删除烦人的投资人登录限制

// ==UserScript==
// @name         金斧子网删除
// @namespace    http://www.scixiv.com
// @version      0.1
// @description  删除烦人的投资人登录限制
// @author       Hardy Wu
// @match        https://*.jfz.com/*
// @grant        All
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    window.addEventListener('load', function() {
        setTimeout(function(){
            var pop = document.querySelector('#LoginAuth')
            if (pop) pop.remove()
            document.body.removeAttribute('scroll')
            document.body.removeAttribute('style')
        }, 1000);
    }, false);
})();