Greasy Fork is available in English.

Better Pixiv Discovery

Zoom in; Remove footer.

// ==UserScript==
// @name         Better Pixiv Discovery
// @namespace    https://lesnow.tk/
// @version      1.0
// @description  Zoom in; Remove footer.
// @author       LeSnow_Ye
// @match        https://www.pixiv.net/discovery
// @grant        none
// ==/UserScript==

(function() {
    var body = document.querySelector(".layout-body").style.cssText = "transform-origin: top;scale: 1.4;";
    document.querySelector(".footer._classic-footer.ya-pc-overlay").remove();
})();