kone
소미소프트

소미소프트

썸네일 크기조절 스크립트

06/01/2025, 08:33:19
유틸
2793 views · 4 likes

챗지피티로 만들었는데 오류 생길수있음 문제시 글삭


1

ㄴ 기존 썸네일 크기


1

ㄴ 스크립트 작동 후 썸네일 크기


1

ㄴ 썸네일 너비 설정 클릭

1

너비 숫자만 쓰고 (뒤에 px는 자동으로 써짐) 확인 누르면


1

높이는 대충 4:3 비율로 계산되고 다시 확인 누르기 >> 새로고침


초기 기본 너비 : 500

초기 기본 높이 : 375


아래는 스크립트입니다


// ==UserScript==
// @name         kone.gg 썸네일 크기 조절 (너비만 입력)
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  kone.gg 미리보기 썸네일 크기를 너비만 입력해 간편하게 조절합니다.
// @match        https://kone.gg/*
// @grant        GM_registerMenuCommand
// @grant        GM_setValue
// @grant        GM_getValue
// ==/UserScript==

(function () {
    'use strict';

    const defaultWidth = '500px';
    const defaultHeight = '375px'; // 초기 기본 높이, 계산용 참고

    const width = GM_getValue('thumbnailWidth', defaultWidth);
    const height = GM_getValue('thumbnailHeight', defaultHeight);

    function normalizeSize(input) {
        if (!input) return null;
        input = input.trim();
        if (/^\d+$/.test(input)) {
            return input + 'px';
        }
        return input; // 이미 단위 포함되어 있는 경우
    }

    function extractPixels(value) {
        const match = /^(\d+)(px)?$/.exec(value.trim());
        return match ? parseInt(match[1], 10) : null;
    }

    function updateThumbnailSize() {
        const newWidthRaw = prompt('썸네일 너비를 입력하세요 (예: 500 또는 100%)', width);
        const newWidth = normalizeSize(newWidthRaw);

        if (!newWidth) return;

        let newHeight;

        // 비율 계산 (숫자일 경우에만 적용)
        const widthNum = extractPixels(newWidth);
        if (widthNum !== null) {
            const heightNum = Math.round(widthNum * 0.75); // 4:3 비율
            newHeight = heightNum + 'px';
        } else {
            newHeight = 'auto'; // 퍼센트나 auto 같은 경우
        }

        GM_setValue('thumbnailWidth', newWidth);
        GM_setValue('thumbnailHeight', newHeight);

        alert(`썸네일 크기 변경:\n너비: ${newWidth}\n높이: ${newHeight}\n\n페이지를 새로고침하면 적용됩니다.`);
    }

    function applyThumbnailStyle(w, h) {
        const style = document.createElement('style');
        style.id = 'custom-thumbnail-style';
        style.textContent = `
            img.max-w-50.max-h-40 {
                max-width: ${w} !important;
                max-height: ${h} !important;
            }
        `;
        document.head.appendChild(style);
    }

    GM_registerMenuCommand('썸네일 너비 설정 (높이는 자동 계산)', updateThumbnailSize);
    applyThumbnailStyle(width, height);
})();
4
2 comments
Sign in to comment
06/01/25
너비아니
06/15/25
참 좋은데 맨 아래쪽 게시글 한두개는 100%기준 아래가 짤리네요
Sign in to comment
압축파일 썸네일 미리보기 프로그램
유틸
fc6974
12/01/25 11542 54
[노모이미지만] 조심의 마도구 ~강하게 아름다운 모험자의 최후~ ver.1.3.0
유틸
미스터장
11/30/25 9535 38
게시판 추천 수 필터링 스크립트
유틸
qqoro
11/28/25 2209 4
RJ01461468 히토즈마이스터!! 미니게임 간단화
유틸
순애아니면죽는사람
11/28/25 16690 7
몬파라 3.06 편의성 모드
유틸
아르
11/26/25 4061 12
저주받은 갑옷2 후원의상+서큐버스 dlc[2025.11.26 오전7시 수정]
유틸
liberty
11/25/25 8695 12
케모노,히토미,X,유튜브 등등 downloader gallery-dl, yt-dlp 활용
유틸
noname
11/25/25 9724 16
Starmaker Story 모드
유틸
0Plm0
11/25/25 5831 7
Romantic Escapades 한시 정답
유틸
생각하는고래
11/24/25 3444 4
줍줍한 유니티6 기계번역세트(기대하지 마십시오.)(재업)
유틸
와랄랄라라
11/24/25 14167 25
texture replacer v1.2.0.4
유틸
kumarin
11/23/25 10736 34
타락신관 첫상대 미표시 버그 패치
유틸
딸기라떼
11/23/25 13507 6
타락신관 조이플 이미지 오류 해결
유틸
yeppi
11/23/25 7756 21
이미지 누락 임시 처리) RJ239186 hazumi
유틸
ㅇㅇ
11/23/25 1699 0
개소리 제거) RJ289056 [KICHUREA] 빌 네메레트 Villnammellet 1.201 손번역 기준
유틸
ㅇㅇ
11/22/25 2262 7
타락신관: 여동생과 악마의 혈통 몰디브, 조이플 한국언어 파일
유틸
ssamjang
11/21/25 5720 9
후타)[복구]무표정한 후타나리는 착정 생물과의 교미에 절대 매료되지 않는다 노모패치+이전 작품 노모패치
유틸
레가토
11/21/25 4710 3
코네 링크 변환기
유틸
ㅇㅇ
11/19/25 10088 6
ai 클로드랑 만든 알만툴 검수 스크립트 mv용
유틸
루파조아
11/17/25 10324 6
RPG MV/MZ 실시간 번역기 - 1.3
유틸
mrpls
11/15/25 22753 116
[요청복구] 감옥용사 조이플 구동 패치
유틸
감비아
11/14/25 7562 7
[노모패치] 란스03
유틸
imakotou
11/14/25 12824 70
RPG MV/MZ 실시간 번역기 0.5 - 종말 얼터 에고이즘 패치
유틸
mrpls
11/11/25 7769 12
NTR 던전] 맵 수정으로 돈 치트.
유틸
전여친
11/11/25 3721 10
리코의 불가사의한 심부름 - 스위치를 더 투명하게
유틸
ㅇㅇ
11/10/25 2872 3
종말얼터 아쉬운부분 약간 수정함
유틸
yuri88
11/10/25 3078 6
포레스티아 낚시 파일 수정본
유틸
geekel
11/09/25 4671 21
Cursed Armor 2 회상방 열기 귀찮은 사람은 쓰는게 좋은 치트
유틸
roandoo
11/08/25 4386 2
demosaic colMask
유틸
kumarin
11/06/25 37196 57
후타)잠꾸러기 후타나리의 착정던전 구출기 노모패치
유틸
레가토
11/03/25 12595 18