코네 이미지 뷰어 개선 스크립트
코네 자체 이미지 뷰어에 전체화면이 없어서 간단하게 AI 사용해서 만들어봤음
이미지 완전 전체화면 + 마우스(한손)으로 모든 조작 or 키보드로 조작 가능
사용법:
0. Tampermonkey 확장프로그램 설치 후, + 버튼으로 아래 내용 복붙
1. 이미지 클릭해서 기존처럼 뷰어열기
2. 우상단 전체화면 버튼 or 키보드 I키 누르기로 전체화면
1
3. 우상단 X버튼 클릭 or I키로 전체화면 및 이미지뷰어 탈출
1
방향키, 마우스 휠로 이미지 이동 가능
aHR0cHM6Ly9raW8uYWMvYy9kMml2bk1FR25EUTV6X3RQcWpoUEti
코드 보기
// ==UserScript==
// @name Kone.gg 뷰어 확장 기능
// @namespace https://kone.gg/
// @version 1.9
// @description 'i' 키/버튼으로 뷰어/전체화면 제어, 전체화면 나가기 버튼으로 뷰어 동시 닫기, 이미지 전환 애니메이션 제거 기능을 제공합니다.
// @author AI Assistant & User
// @match https://kone.gg/*
// @grant GM_addStyle
// @run-at document-idle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const SCRIPT_ID = 'konegg-ui-toggle-script';
// === 스타일 주입 ===
GM_addStyle(`
/* UI 숨김 스타일 */
.viewer-container.ui-hidden .viewer-header,
.viewer-container.ui-hidden .viewer-footer {
display: none !important;
}
/* Swiper 뷰어 슬라이드 애니메이션 제거 */
.swiper-wrapper {
transition-duration: 0.001s !important;
}
/* 전체화면 나가기 버튼 스타일 */
#exit-fullscreen-button {
position: fixed;
top: 1rem;
right: 1rem;
z-index: 2147483647;
display: none;
width: 48px;
height: 48px;
background-color: rgba(0, 0, 0, 0.4);
color: white;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50%;
cursor: pointer;
align-items: center;
justify-content: center;
}
#exit-fullscreen-button:hover {
background-color: rgba(0, 0, 0, 0.7);
}
`);
// === 기능 함수 ===
const toggleUI = (container) => {
if (container) {
container.classList.toggle('ui-hidden');
}
};
const setupViewer = (viewerContainer) => {
if (viewerContainer.dataset.uiToggleSetup === 'true') return;
viewerContainer.dataset.uiToggleSetup = 'true';
viewerContainer.classList.add('viewer-container');
const header = viewerContainer.querySelector('div.flex.w-full.justify-end');
if (!header) return;
header.classList.add('viewer-header');
const footer = viewerContainer.querySelector('div.flex.flex-col.md\\:flex-row');
if (footer) footer.classList.add('viewer-footer');
// 전체화면 버튼 추가 (이미 있다면 추가하지 않음)
if (!header.querySelector('.fullscreen-btn')) {
const closeButton = header.querySelector('button:last-child');
if (closeButton) {
const fullscreenButton = document.createElement('button');
fullscreenButton.className = `${closeButton.className} fullscreen-btn`;
fullscreenButton.innerHTML = ``;
fullscreenButton.onclick = (e) => {
e.stopPropagation();
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
}
};
header.insertBefore(fullscreenButton, closeButton);
}
}
// UI 토글 버튼 이벤트 설정
const gridButton = header.querySelector('button');
if (gridButton && !gridButton.dataset.uiToggleEvent) {
gridButton.dataset.uiToggleEvent = 'true';
gridButton.addEventListener('click', (e) => {
e.preventDefault();
e.stopPropagation();
toggleUI(viewerContainer);
}, true);
}
};
// === 스크립트 초기 실행 로직 ===
if (document.getElementById(SCRIPT_ID)) return;
const scriptMarker = document.createElement('div');
scriptMarker.id = SCRIPT_ID;
scriptMarker.style.display = 'none';
document.body.appendChild(scriptMarker);
if (!document.getElementById('exit-fullscreen-button')) {
const exitFullscreenButton = document.createElement('button');
exitFullscreenButton.id = 'exit-fullscreen-button';
exitFullscreenButton.innerHTML = ``;
// [수정됨] 'X' 버튼 클릭 시 전체화면 해제 및 뷰어 닫기
exitFullscreenButton.onclick = () => {
if (document.fullscreenElement) {
// 1. 전체화면 해제
document.exitFullscreen();
// 2. 뷰어를 찾아 닫기 버튼을 클릭
const viewer = document.querySelector('.viewer-container');
if (viewer) {
const closeButton = viewer.querySelector('.viewer-header button:last-child');
if (closeButton) {
closeButton.click();
}
}
}
};
document.body.appendChild(exitFullscreenButton);
}
// === 이벤트 리스너 ===
const observer = new MutationObserver((mutationsList) => {
for (const mutation of mutationsList) {
if (mutation.addedNodes.length) {
const viewerContainer = document.querySelector('div.fixed.z-50 div.swiper')?.closest('div.fixed.z-50');
if (viewerContainer) {
setupViewer(viewerContainer);
}
}
}
});
document.addEventListener('keydown', (e) => {
const activeElement = document.activeElement;
const isTyping = activeElement && (activeElement.tagName === 'INPUT' || activeElement.tagName === 'TEXTAREA' || activeElement.isContentEditable);
if (isTyping) return;
if (e.key.toLowerCase() === 'i') {
e.preventDefault();
const viewer = document.querySelector('.viewer-container:not([style*="display: none"])');
if (viewer) { // 뷰어가 열려있을 때
if (document.fullscreenElement) {
document.exitFullscreen();
const closeButton = viewer.querySelector('.viewer-header button:last-child');
if (closeButton) closeButton.click();
} else {
document.documentElement.requestFullscreen();
}
} else { // 뷰어가 닫혀있을 때
const openViewerButton = Array.from(document.querySelectorAll('div[role="menuitem"]'))
.find(item => item.textContent.trim() === '뷰어 열기');
if (openViewerButton) {
openViewerButton.click();
setTimeout(() => {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen().catch(err => {});
}
}, 100);
}
}
}
});
document.addEventListener('fullscreenchange', () => {
const currentViewer = document.querySelector('.viewer-container');
const exitBtn = document.getElementById('exit-fullscreen-button');
if (document.fullscreenElement) {
if (currentViewer) currentViewer.classList.add('ui-hidden');
if (exitBtn) exitBtn.style.display = 'flex';
} else {
if (currentViewer) currentViewer.classList.remove('ui-hidden');
if (exitBtn) exitBtn.style.display = 'none';
}
});
observer.observe(document.body, {
childList: true,
subtree: true
});
})(); 10
12 comments
공지
AI 이미지 관련 공지 및 관련 규정 수정 공지
1uF
05/02
62785
22
AI 이미지 관련 공지 및 관련 규정 수정 공지
공지
1uF
05/02 62785 22
공지
‼️뉴비 필독 가이드‼️
1uF
05/02
93629
134
‼️뉴비 필독 가이드‼️
공지
1uF
05/02 93629 134
공지
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
SK
04/05
207189
-25
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
공지
SK
04/05 207189 -25
공지
🔔[필독] 탭 별 이용 가이드 (20260206~)
Etrick
02/05
255657
-41
🔔[필독] 탭 별 이용 가이드 (20260206~)
공지
Etrick
02/05 255657 -41
공지
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
SK
05/17/25
1244582
-14
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
공지
SK
05/17/25 1244582 -14
유틸
(코이카츠) 붕스 캐릭터 공유
pst0025
03/27
9998
38
(코이카츠) 붕스 캐릭터 공유
유틸
pst0025
03/27 9998 38
유틸
데이터 클리너) czkawka - 크로키에트, windows_krokiet_on_windows_skia_opengl.exe
ㅇㅇ
03/27
11023
21
데이터 클리너) czkawka - 크로키에트, windows_krokiet_on_windows_skia_opengl.exe
유틸
ㅇㅇ
03/27 11023 21
유틸
(RGVsaXJpdW3jg5njgqJATlRS) 코이카츠 씬 공유, 캐릭 포함
pst0025
03/26
9386
16
(RGVsaXJpdW3jg5njgqJATlRS) 코이카츠 씬 공유, 캐릭 포함
유틸
pst0025
03/26 9386 16
유틸
Kiosk 암호 자동 입력기 2.0
oroshinashi9
03/26
5195
32
Kiosk 암호 자동 입력기 2.0
유틸
oroshinashi9
03/26 5195 32
유틸
[의상 파일 공유][비밀 노출 -배덕의 달콤함에 물든 마나카-] 데빌
akuma
03/26
12076
19
[의상 파일 공유][비밀 노출 -배덕의 달콤함에 물든 마나카-] 데빌
유틸
akuma
03/26 12076 19
유틸
mp3,wav 여러 파일 한개로 병합해주는 프로그램 만듬
noname
03/21
11693
20
mp3,wav 여러 파일 한개로 병합해주는 프로그램 만듬
유틸
noname
03/21 11693 20
유틸
fapcraft (제니모드) v1.1
monolithliza
03/20
10185
48
fapcraft (제니모드) v1.1
유틸
monolithliza
03/20 10185 48
유틸
하츠네 미쿠 (코이카츠) 프리셋 공유 v2
pst0025
03/19
19988
36
하츠네 미쿠 (코이카츠) 프리셋 공유 v2
유틸
pst0025
03/19 19988 36
유틸
(코이카츠) 셀레스포니아 캐릭터 공유 (우리가 아는 그 게임 맞음)
pst0025
03/18
19739
38
(코이카츠) 셀레스포니아 캐릭터 공유 (우리가 아는 그 게임 맞음)
유틸
pst0025
03/18 19739 38
유틸
(코이카츠) Vrchat 캐릭터 공유
pst0025
03/17
10627
42
(코이카츠) Vrchat 캐릭터 공유
유틸
pst0025
03/17 10627 42
유틸
트랜스크랩 1.0.5 패치에서 오류나는 사람들은 이거 다운받으셈.
liberty
03/17
13813
25
트랜스크랩 1.0.5 패치에서 오류나는 사람들은 이거 다운받으셈.
유틸
liberty
03/17 13813 25
유틸
악!! 저는 파일 올릴 때 최신화 체크도 안하는 병신입니다!!
pst0025
03/16
6738
28
악!! 저는 파일 올릴 때 최신화 체크도 안하는 병신입니다!!
유틸
pst0025
03/16 6738 28
유틸
블아 캐릭터 공유 빠진거 3개
pst0025
03/16
10419
38
블아 캐릭터 공유 빠진거 3개
유틸
pst0025
03/16 10419 38
유틸
(코이카츠) 벽람 캐릭터 공유 [이것도 많다....]
pst0025
03/16
11868
43
(코이카츠) 벽람 캐릭터 공유 [이것도 많다....]
유틸
pst0025
03/16 11868 43
유틸
(코이카츠) 블아 캐릭터 공유 [아무튼 ㅈㄴ 많음]
pst0025
03/16
13030
75
(코이카츠) 블아 캐릭터 공유 [아무튼 ㅈㄴ 많음]
유틸
pst0025
03/16 13030 75
유틸
(코이카츠) 명조 캐릭터 공유
pst0025
03/16
19590
54
(코이카츠) 명조 캐릭터 공유
유틸
pst0025
03/16 19590 54
유틸
(코이카츠) '데어라' 프리셋 공유
pst0025
03/16
9301
45
(코이카츠) '데어라' 프리셋 공유
유틸
pst0025
03/16 9301 45
유틸
던전 앤 브라이드 치트모드 1.56업데이트 + 번역모드 대응버전 출시 *04/04 18:31 수정
rengester
03/13
17668
37
던전 앤 브라이드 치트모드 1.56업데이트 + 번역모드 대응버전 출시 *04/04 18:31 수정
유틸
rengester
03/13 17668 37
유틸
JSON AI 번역기 (마나카 커스텀미션 및 etc..)
bunta_expert
03/10
6553
20
JSON AI 번역기 (마나카 커스텀미션 및 etc..)
유틸
bunta_expert
03/10 6553 20
유틸
[노모패치] 324709 노엘 간바리마스! v.1.2.2
dd
03/07
12988
33
[노모패치] 324709 노엘 간바리마스! v.1.2.2
유틸
dd
03/07 12988 33
유틸
야식메뉴판 Plus 업뎃 안내 - 1.2.1
qqoro
03/06
16359
38
야식메뉴판 Plus 업뎃 안내 - 1.2.1
유틸
qqoro
03/06 16359 38
유틸
코이카츠 프리셋 공유
wonder11
03/04
9791
34
코이카츠 프리셋 공유
유틸
wonder11
03/04 9791 34
유틸
조이플 오류 및 패치 + 유틸
yeppi
03/04
12024
34
조이플 오류 및 패치 + 유틸
유틸
yeppi
03/04 12024 34
유틸
야식메뉴판 Plus 만들어왔음 - 게임 방주 관리 데스크톱 앱
qqoro
03/04
15195
77
야식메뉴판 Plus 만들어왔음 - 게임 방주 관리 데스크톱 앱
유틸
qqoro
03/04 15195 77
유틸
RJ01389782 비밀 노출 마나카 커스텀 미션 번역2
ㅇㅇ
03/03
14496
18
RJ01389782 비밀 노출 마나카 커스텀 미션 번역2
유틸
ㅇㅇ
03/03 14496 18
유틸
ai번역)RJ01389782 비밀 노출 마나카 모드와 미션 여러 가지
kkkktrrr
03/02
16621
45
ai번역)RJ01389782 비밀 노출 마나카 모드와 미션 여러 가지
유틸
kkkktrrr
03/02 16621 45
유틸
지난번에 만든 (케모노,히토미,X,유튜브 등등 downloader gallery-dl, yt-dlp 활용) 다운로더 GUI 버전으로 만들어봄
noname
03/01
16173
56
지난번에 만든 (케모노,히토미,X,유튜브 등등 downloader gallery-dl, yt-dlp 활용) 다운로더 GUI 버전으로 만들어봄
유틸
noname
03/01 16173 56
유틸
하츠네 미쿠 (코이카츠) 프리셋 공유
pst0025
02/28
13969
32
하츠네 미쿠 (코이카츠) 프리셋 공유
유틸
pst0025
02/28 13969 32
유틸
유니티 클뜯 assetstudio 후속 animestudio
xcandle
02/28
8979
19
유니티 클뜯 assetstudio 후속 animestudio
유틸
xcandle
02/28 8979 19
유틸
Digital Contents Library Tool 1.1.7.2 (구 DLsite 퀵 뷰어)
ll-lllllllll
02/24
92591
70
Digital Contents Library Tool 1.1.7.2 (구 DLsite 퀵 뷰어)
유틸
ll-lllllllll
02/24 92591 70
s/somisoft
• 143,985 subscribers여러가지 다루는 서브
Created 05/17/2025, 14:58:43
Deleted comment.
Deleted comment.
Deleted comment.