// ==UserScript==
// @name 작은 디시콘
// @namespace http://tampermonkey.net/
// @version 2024-04-17
// @description try to take over the world!
// @author You
// @match https://gall.dcinside.com/mgallery/board/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=dcinside.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Add custom CSS to override image width
GM_addStyle('.written_dccon { max-width: 50px !important; width: auto !important; height: 50px !important; }');
// Add custom CSS to set height of the div
GM_addStyle('.coment_dccon_img.bigdccon_wrap { height: 50px !important; }');
})();
---
css로 50px 설정
디시콘 숨기기
GM_addStyle('li[id^="comment_li_"]:has(.comment_dccon) { display: none; }');
GM_addStyle('li[id^="reply_li_"]:has(.comment_dccon) { display: none; }');
댓글 0