코네 이미지 뷰어 개선 스크립트
코네 자체 이미지 뷰어에 전체화면이 없어서 간단하게 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
61790
22
AI 이미지 관련 공지 및 관련 규정 수정 공지
공지
1uF
05/02 61790 22
공지
‼️뉴비 필독 가이드‼️
1uF
05/02
92537
134
‼️뉴비 필독 가이드‼️
공지
1uF
05/02 92537 134
공지
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
SK
04/05
206501
-25
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
공지
SK
04/05 206501 -25
공지
🔔[필독] 탭 별 이용 가이드 (20260206~)
Etrick
02/05
254905
-41
🔔[필독] 탭 별 이용 가이드 (20260206~)
공지
Etrick
02/05 254905 -41
공지
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
SK
05/17/25
1244471
-14
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
공지
SK
05/17/25 1244471 -14
유틸
[복구] 란스03 노모패치
imakotou
04/28
16028
28
[복구] 란스03 노모패치
유틸
imakotou
04/28 16028 28
유틸
REC 리듬게임 추가 MOD
kunarin
04/28
7569
12
REC 리듬게임 추가 MOD
유틸
kunarin
04/28 7569 12
유틸
MZ MV data 복호화 실행기
미요포
04/27
13663
38
MZ MV data 복호화 실행기
유틸
미요포
04/27 13663 38
유틸
90일, RJ01540816 한정 복호화 도구) RMMZ JSON 통합 복호화 도구.pyw + RJ01540816 복호화.7z
ㅇㅇ
04/27
6543
6
90일, RJ01540816 한정 복호화 도구) RMMZ JSON 통합 복호화 도구.pyw + RJ01540816 복호화.7z
유틸
ㅇㅇ
04/27 6543 6
유틸
제품 코드 추출기, 제품 코드 중복 찾기
ㅇㅇ
04/27
8447
18
제품 코드 추출기, 제품 코드 중복 찾기
유틸
ㅇㅇ
04/27 8447 18
유틸
MMD 모션,음악 통팩 공유
pst0025
04/26
9105
56
MMD 모션,음악 통팩 공유
유틸
pst0025
04/26 9105 56
유틸
(코이카츠) 솔O티엘 작가 프리셋 통팩 공유
pst0025
04/25
12141
73
(코이카츠) 솔O티엘 작가 프리셋 통팩 공유
유틸
pst0025
04/25 12141 73
유틸
(코이카츠) 에러난 파일 복구 및 빠진거 보완
pst0025
04/25
10698
31
(코이카츠) 에러난 파일 복구 및 빠진거 보완
유틸
pst0025
04/25 10698 31
유틸
RPG MV/MZ 치트 플러그인 웹 딸깍 설치 오픈
mrpls
04/25
11373
28
RPG MV/MZ 치트 플러그인 웹 딸깍 설치 오픈
유틸
mrpls
04/25 11373 28
유틸
자동소미 해적판의 해적판 업데이트
스눕제이크
04/23
8220
12
자동소미 해적판의 해적판 업데이트
유틸
스눕제이크
04/23 8220 12
유틸
RPG MV/MZ 안실시간 미리번역 업데이트
mrpls
04/23
7823
27
RPG MV/MZ 안실시간 미리번역 업데이트
유틸
mrpls
04/23 7823 27
유틸
파일 구글 번역기) kr_tr_7.pyw
ㅇㅇ
04/22
12271
9
파일 구글 번역기) kr_tr_7.pyw
유틸
ㅇㅇ
04/22 12271 9
유틸
(코이카츠) - "큰거"
pst0025
04/22
16060
66
(코이카츠) - "큰거"
유틸
pst0025
04/22 16060 66
유틸
(코이카츠) 큰거 올리기 전에 작은거
pst0025
04/22
18935
62
(코이카츠) 큰거 올리기 전에 작은거
유틸
pst0025
04/22 18935 62
유틸
(코이카츠) - 최신 프리셋 일부 공유 [v2]
pst0025
04/22
10919
45
(코이카츠) - 최신 프리셋 일부 공유 [v2]
유틸
pst0025
04/22 10919 45
유틸
마나카 모드들
kkkktrrr
04/22
17159
33
마나카 모드들
유틸
kkkktrrr
04/22 17159 33
유틸
(코이카츠) - 최신 프리셋 일부 공유
pst0025
04/21
10759
48
(코이카츠) - 최신 프리셋 일부 공유
유틸
pst0025
04/21 10759 48
유틸
유틸) RJ코드 이미지 검색 용 기능추가
ATTAA
04/20
11990
9
유틸) RJ코드 이미지 검색 용 기능추가
유틸
ATTAA
04/20 11990 9
유틸
VXA 스크립트) ▼ 素材(Materials) ## 한영이름 입력 스크립트.rb
ㅇㅇ
04/20
8693
7
VXA 스크립트) ▼ 素材(Materials) ## 한영이름 입력 스크립트.rb
유틸
ㅇㅇ
04/20 8693 7
유틸
RPG MV/MZ 실시간 번역기 딸깍 설치 웹사이트 오픈 (2.3 번역 주위 짤림)
mrpls
04/19
33300
106
RPG MV/MZ 실시간 번역기 딸깍 설치 웹사이트 오픈 (2.3 번역 주위 짤림)
유틸
mrpls
04/19 33300 106
유틸
(코이카츠) - グラフ 통팩 공유
pst0025
04/19
23160
56
(코이카츠) - グラフ 통팩 공유
유틸
pst0025
04/19 23160 56
유틸
유틸)유저스크립트-썸네일&본문 이미지 허용/비허용
cloud67p
04/19
7768
4
유틸)유저스크립트-썸네일&본문 이미지 허용/비허용
유틸
cloud67p
04/19 7768 4
유틸
RPG MV/MZ 실시간 번역기 1.10 (루나와 음욕의 함정 던전, 젬마4)
mrpls
04/18
24749
35
RPG MV/MZ 실시간 번역기 1.10 (루나와 음욕의 함정 던전, 젬마4)
유틸
mrpls
04/18 24749 35
유틸
VX or VXA 풀스크린 스크립트) ## VX Fullscreen++ Multi-Monitor.rb + ## VXA Fullscreen++ Multi-Monitor v2.32.rb
ㅇㅇ
04/18
9037
5
VX or VXA 풀스크린 스크립트) ## VX Fullscreen++ Multi-Monitor.rb + ## VXA Fullscreen++ Multi-Monitor v2.32.rb
유틸
ㅇㅇ
04/18 9037 5
유틸
[노모패치, AI] 한 번만이라도 좋으니까, 나랑 해줘!
soxocel777
04/17
15245
29
[노모패치, AI] 한 번만이라도 좋으니까, 나랑 해줘!
유틸
soxocel777
04/17 15245 29
유틸
자동 소미 해적판의 해적판
스눕제이크
04/17
9522
9
자동 소미 해적판의 해적판
유틸
스눕제이크
04/17 9522 9
유틸
[복구]SecretFlasher.VoicePack-Plus 마나카 음성모드 개인수정(로우튠 등)
leedi
04/16
13306
7
[복구]SecretFlasher.VoicePack-Plus 마나카 음성모드 개인수정(로우튠 등)
유틸
leedi
04/16 13306 7
유틸
( 코이카츠 ) - Anna anon 씬카드 공유
pst0025
04/16
24308
63
( 코이카츠 ) - Anna anon 씬카드 공유
유틸
pst0025
04/16 24308 63
유틸
자동소미 해적판 업데이트
buttercookie
04/16
9440
12
자동소미 해적판 업데이트
유틸
buttercookie
04/16 9440 12
유틸
[요청복구]스타바운드 통팩 모드만[구버전, 2024.06.17)
liberty
04/15
9694
1
[요청복구]스타바운드 통팩 모드만[구버전, 2024.06.17)
유틸
liberty
04/15 9694 1
s/somisoft
• 143,985 subscribers여러가지 다루는 서브
Created 05/17/2025, 14:58:43
Deleted comment.
Deleted comment.
Deleted comment.