코네 이미지 뷰어 개선 스크립트
코네 자체 이미지 뷰어에 전체화면이 없어서 간단하게 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
61776
22
AI 이미지 관련 공지 및 관련 규정 수정 공지
공지
1uF
05/02 61776 22
공지
‼️뉴비 필독 가이드‼️
1uF
05/02
92500
134
‼️뉴비 필독 가이드‼️
공지
1uF
05/02 92500 134
공지
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
SK
04/05
206433
-25
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
공지
SK
04/05 206433 -25
공지
🔔[필독] 탭 별 이용 가이드 (20260206~)
Etrick
02/05
254853
-41
🔔[필독] 탭 별 이용 가이드 (20260206~)
공지
Etrick
02/05 254853 -41
공지
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
SK
05/17/25
1244450
-14
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
공지
SK
05/17/25 1244450 -14
유틸
서브,게시글 차단, UI추가 유저스크립트
cloud67p
10/05/25
2666
11
서브,게시글 차단, UI추가 유저스크립트
유틸
cloud67p
10/05/25 2666 11
유틸
카린즈 프리즌 cc모드 기계번역해옴
고추보집물
10/03/25
8727
39
카린즈 프리즌 cc모드 기계번역해옴
유틸
고추보집물
10/03/25 8727 39
유틸
무기력 천사 추가 렉 개선 패치 (a.k.a 쯔꾸르는 최적화 쓰레기가 분명하다)
erukajihx
10/02/25
6664
65
무기력 천사 추가 렉 개선 패치 (a.k.a 쯔꾸르는 최적화 쓰레기가 분명하다)
유틸
erukajihx
10/02/25 6664 65
유틸
번역 플러긴용 일본 이름 정리
kumarin
10/02/25
2246
10
번역 플러긴용 일본 이름 정리
유틸
kumarin
10/02/25 2246 10
유틸
Aideal Helper plugin v1.0.2.0
kumarin
09/30/25
2265
10
Aideal Helper plugin v1.0.2.0
유틸
kumarin
09/30/25 2265 10
유틸
3시간 만에 만든 방주 중복 정리기
asdf1243
09/30/25
3063
8
3시간 만에 만든 방주 중복 정리기
유틸
asdf1243
09/30/25 3063 8
유틸
팔성제(八星帝) ssg 파일
hdddie
09/28/25
2878
7
팔성제(八星帝) ssg 파일
유틸
hdddie
09/28/25 2878 7
유틸
다키스트던전 Deovolente 에디션
doyoulikekim
09/27/25
9683
29
다키스트던전 Deovolente 에디션
유틸
doyoulikekim
09/27/25 9683 29
유틸
[v10] 자동 소미 Auto Somi 개조판
마나난
09/26/25
14300
22
[v10] 자동 소미 Auto Somi 개조판
유틸
마나난
09/26/25 14300 22
유틸
좀더! 불꽃의 시리즈 붉은화면 수정패치
adsv42
09/23/25
3733
15
좀더! 불꽃의 시리즈 붉은화면 수정패치
유틸
adsv42
09/23/25 3733 15
유틸
도나도나 미검열 CG 오류들 수정
riel64
09/23/25
17297
77
도나도나 미검열 CG 오류들 수정
유틸
riel64
09/23/25 17297 77
유틸
SW_Decensor v0.7.4.1
kumarin
09/21/25
9481
38
SW_Decensor v0.7.4.1
유틸
kumarin
09/21/25 9481 38
유틸
base64 자동 디코딩 크롬 확장 프로그램 입니다.
qqwe1234
09/18/25
10012
80
base64 자동 디코딩 크롬 확장 프로그램 입니다.
유틸
qqwe1234
09/18/25 10012 80
유틸
내가 dl 검색할 때 귀찮아서 만든 프로그램
boya058
09/17/25
2980
10
내가 dl 검색할 때 귀찮아서 만든 프로그램
유틸
boya058
09/17/25 2980 10
유틸
코네 서브/게시글/댓글/유저 필터, 차단 스크립트 v1.3
공승아
09/14/25
4401
8
코네 서브/게시글/댓글/유저 필터, 차단 스크립트 v1.3
유틸
공승아
09/14/25 4401 8
유틸
XUnity.AutoTranslator 5.6.1_kr 번역 플러그인 한국형 비공식 버전
kumarin
09/13/25
10952
41
XUnity.AutoTranslator 5.6.1_kr 번역 플러그인 한국형 비공식 버전
유틸
kumarin
09/13/25 10952 41
유틸
게시글 제목 필터 스크립트
cloud67p
09/13/25
1810
5
게시글 제목 필터 스크립트
유틸
cloud67p
09/13/25 1810 5
유틸
후타)무표정한 후타나리는 착정 생물과의 교미에 절대 매료되지 않는다 노모패치 + 이전 작품 노모패치 복구
레가토
09/12/25
10562
26
후타)무표정한 후타나리는 착정 생물과의 교미에 절대 매료되지 않는다 노모패치 + 이전 작품 노모패치 복구
유틸
레가토
09/12/25 10562 26
유틸
다키스트 던전 NSFW 완전판 [Npc 리텍 / 영웅 리텍 / 이쁜이쁜 영웅 모드 / 몬스터 리텍]
삐뉴
09/10/25
17705
95
다키스트 던전 NSFW 완전판 [Npc 리텍 / 영웅 리텍 / 이쁜이쁜 영웅 모드 / 몬스터 리텍]
유틸
삐뉴
09/10/25 17705 95
유틸
[복구] +@ 시니시스타 2 모드 모음 (1.10)
sims9876
09/10/25
13197
26
[복구] +@ 시니시스타 2 모드 모음 (1.10)
유틸
sims9876
09/10/25 13197 26
유틸
야겜아님,미번) RJ01432103 MACHINE CHILD (머신 차일드) 일본어판
AND
09/09/25
7506
25
야겜아님,미번) RJ01432103 MACHINE CHILD (머신 차일드) 일본어판
유틸
AND
09/09/25 7506 25
유틸
둘만의 생활 세이브 에디터
அறியப்பட்ட🔧
09/07/25
15497
14
둘만의 생활 세이브 에디터
유틸
அறியப்பட்ட🔧
09/07/25 15497 14
유틸
코네 이미지 뷰어 개선 스크립트
Ghost
09/06/25
4221
10
코네 이미지 뷰어 개선 스크립트
유틸
Ghost
09/06/25 4221 10
유틸
[버그수정용] 검은정복왕 우클릭 팅김 버그수정
Ghost
09/06/25
5844
24
[버그수정용] 검은정복왕 우클릭 팅김 버그수정
유틸
Ghost
09/06/25 5844 24
유틸
히토미 시리즈를 통합시키는 프로그램을 만들어 보았습니다.
ariantganada
09/06/25
5360
11
히토미 시리즈를 통합시키는 프로그램을 만들어 보았습니다.
유틸
ariantganada
09/06/25 5360 11
유틸
스텔라블레이드 릴리 누드모드 복구+추가함
konekat
09/03/25
9876
19
스텔라블레이드 릴리 누드모드 복구+추가함
유틸
konekat
09/03/25 9876 19
유틸
.RPGMVP .PNG_ 파일 썸네일 제공 DLL 보안 업데이트
moomin
09/02/25
4776
22
.RPGMVP .PNG_ 파일 썸네일 제공 DLL 보안 업데이트
유틸
moomin
09/02/25 4776 22
유틸
카린즈 프리즌 Karryn's Prison 치트 모드
qpspql
09/01/25
15271
21
카린즈 프리즌 Karryn's Prison 치트 모드
유틸
qpspql
09/01/25 15271 21
유틸
webp.zip 파일 자동으로 jpg 로 변환 후 재 압축 프로그램 만듬 (2025.12.10 업데이트)
noname
08/31/25
2237
12
webp.zip 파일 자동으로 jpg 로 변환 후 재 압축 프로그램 만듬 (2025.12.10 업데이트)
유틸
noname
08/31/25 2237 12
유틸
유니티 신버전 자동번역기
김머시기
08/31/25
8597
31
유니티 신버전 자동번역기
유틸
김머시기
08/31/25 8597 31
s/somisoft
• 143,985 subscribers여러가지 다루는 서브
Created 05/17/2025, 14:58:43
Deleted comment.
Deleted comment.
Deleted comment.