Greasy Fork

Greasy Fork is available in English.

yuketang print fucker.

This tool can remove all the useless element from the print page, which makes it nice to read the pdf online.

当前为 2019-05-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         yuketang print fucker.
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  This tool can remove all the useless element from the print page, which makes it nice to read the pdf online.
// @author       You
// @match        https://www.yuketang.cn/web/print
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('body > div > div.controls-panel.noprint').remove();
    $('body > div > div').removeClass("cards-panel");

})();