MyDealz Profilseite Kommentar-Hover-Effekt

Blendet beim Hovern auf MyDealz Profilseiten den vollständigen Kommentartext ein

// ==UserScript==
// @name         MyDealz Profilseite Kommentar-Hover-Effekt
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Blendet beim Hovern auf MyDealz Profilseiten den vollständigen Kommentartext ein
// @author       MD928835
// @license      MIT
// @match        https://www.mydealz.de/profile/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const style = `
        .userProfile-action-comment {
            display: block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            line-clamp: 3;
            max-height: 4.5em;
        }

        .userProfile-action-comment:hover {
            white-space: normal;
            overflow: visible;
            text-overflow: unset;
            line-clamp: unset;
            max-height: none;
        }
    `;

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址