kone
소미소프트

소미소프트

썸네일 크기조절 스크립트

06/01/2025, 08:33:19
유틸
2790 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
마나카 릴리스 모드 번역
유틸
죽지않아
02/16 11215 6
청아)시니2 하냐 컨텐츠 더 추가해줬으면
유틸
cascastu
02/16 10363 11
[요청복구] Prison Hero 감옥용사 조이플 구동패치
유틸
감비아
02/16 9068 5
SecretFlasher.VoicePack-Plus 마나카 음성모드 개인수정(로우튠 등)
유틸
leedi
02/16 24418 26
GameDB 배포
유틸
심심한개발자
02/15 8782 11
기번 너스콜 선택지 ㅁㅁㅁ로 뜨는 문제 해결 필요한사람 가져가세요
유틸
tyrocsx
02/13 10319 16
[노모패치] RJ274510 이누히메 1.07
유틸
panzer
02/13 16359 27
프린세스 시너지 전용치트
유틸
4HHHH
02/13 9643 11
안돼! 동거 라이프 세이브파일 에디트 (파이썬)
유틸
jghkk9
02/12 8269 2
[노모패치] RJ01302356 리리네와 연금술사
유틸
bubblegum
02/12 11740 9
f95에 올라온 RJ01550550 프린세스 시너지 완전 노모개조파일 있는데
유틸
pd99990
02/12 21728 34
comfyui를 이용해서 만화를 자동채색+검열제거 해보자
유틸
프로베스트캣
02/12 17450 48
시니시스타2 내 취향 가득 들어간 핑챙 자작 모드 (1.2.1 ver)
유틸
cascastu
02/11 22814 85
90일, 복구) 유니티6 번역세트.zip 갱신 26.03.21
유틸
ㅇㅇ
02/10 9376 19
유니티 기계번역 딸각툴
유틸
Ghost
02/10 9124 10
ProjectR v0.7.0.0 무검열 패치(수정)
유틸
choi-good
02/10 13769 20
프린세스 시너지 전용치트
유틸
4HHHH
02/10 11582 10
[요청복구] RJ01453643 [PlumSoftware] 네토라세에 능숙한 야마다씨 (이미지번역)
유틸
류제로
02/09 8209 9
[요청복구] RJ01511074 사쿠라코 네토라레담 타이틀 및 이미지 번역 (3차 수정_찐최종) 2026.02.09 게시물 수정함
유틸
류제로
02/06 19088 18
삼국지8 리메이크 PK 여성화 하렘 (149명 패치) 1.1.0버전용
유틸
크로우
02/05 21465 64
감옥용사 조이플 구동패치
유틸
ssddttj
02/05 8135 3
코캇 버) 프리셋 (모드포함)
유틸
pst0025
02/05 14331 29
[요청복구] [1.10으로 암호화 다시함] [이미지번역](에로스테만) RJ01522194 NTR히로인 화이트스노우
유틸
류제로
02/04 8678 14
모모 크래시 ver.1.60 (26.02.02)
유틸
미스터장
02/04 8404 5
[노모패치만] 여름의 뒤편에서
유틸
미스터장
02/03 14685 30
🔞슬레이 더 스파이어 NSFW 모드 올인원 (5.12 갱신)
유틸
Rasmodia
02/03 46927 112
터널탈출FE 0.18.0a 복호화
유틸
wqddsag
02/03 12113 6
MV 번역 이식 도구 파이썬 코드
유틸
lovesccubus
02/03 11354 5
[DLC만] 세계수의 무녀 ~거리 한복판에서 만지기 무제한 & 에로 트랩으로 갸루 겟츄~ 【H씬 전부해금 DLC】
유틸
미스터장
02/03 16730 46
차라 키우기
유틸
beplnex
02/01 7961 6