Phind.com improved printing

This script adjusts the css styles for printing so every useful content is visible and readable.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

You will need to install an extension such as Tampermonkey to install this script.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Phind.com improved printing
// @name:de      Phind.com verbesserte Druckansicht
// @namespace    https://meinebasis.de
// @version      0.1
// @description  This script adjusts the css styles for printing so every useful content is visible and readable.
// @description:de Mit diesem Script wird die Druckansicht für phind.com optimiert, sodass alle nützlichen Inhalte angezeigt und lesbar werden.
// @author       Finomosec
// @match        https://phind.com/*
// @match        https://www.phind.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    const printCSS = `
        @media print {
            .phind-logo,
            .header-gradient,
            .followup-textarea-container,
            .thoughts-card,
            .flex.flex-row.space-x-4.mt-2.text-tertiary /* thumb up/down, etc. */,
            body > div.h-screen > div:nth-child(3),
            .callout-tip {
                display: none !important;
            }
            .chat-question {
                font-size: 1.5rem!important;
                -webkit-line-clamp: none!important;
            }
        }
        aside, body > div.h-screen > div:last-child, body > div.h-screen > div:first-child {
            display: none!important;
        }
        .sidebar-main-content {
            padding: 1rem!important;
        }
    `;

    const styleSheet = document.createElement('style');
    styleSheet.textContent = printCSS;
    document.head.appendChild(styleSheet);
})();