코네 이미지 뷰어 개선 스크립트
코네 자체 이미지 뷰어에 전체화면이 없어서 간단하게 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
62052
22
AI 이미지 관련 공지 및 관련 규정 수정 공지
공지
1uF
05/02 62052 22
공지
‼️뉴비 필독 가이드‼️
1uF
05/02
92865
134
‼️뉴비 필독 가이드‼️
공지
1uF
05/02 92865 134
공지
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
SK
04/05
206755
-25
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
공지
SK
04/05 206755 -25
공지
🔔[필독] 탭 별 이용 가이드 (20260206~)
Etrick
02/05
255075
-41
🔔[필독] 탭 별 이용 가이드 (20260206~)
공지
Etrick
02/05 255075 -41
공지
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
SK
05/17/25
1244551
-14
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
공지
SK
05/17/25 1244551 -14
동인
[구매보급/미번/shuten douji] 人妻ゴロしの魔眼2
silver157
05/01
11822
54
[구매보급/미번/shuten douji] 人妻ゴロしの魔眼2
동인
silver157
05/01 11822 54
동인
JK신부 사쿠라 1~3편
나나세마루
05/01
18052
36
JK신부 사쿠라 1~3편
동인
나나세마루
05/01 18052 36
소리
【야한 보지 밀착 애교 신음】유부녀 바니걸이 해주는 달콤한 자지 마사지, 말랑한 아라사 보지 안에 잔뜩 싸줘♪【KU100 고해상도 음질】
키도
05/01
10170
50
【야한 보지 밀착 애교 신음】유부녀 바니걸이 해주는 달콤한 자지 마사지, 말랑한 아라사 보지 안에 잔뜩 싸줘♪【KU100 고해상도 음질】
소리
키도
05/01 10170 50
동인
가지고 놀아지고 있어!?
hatlatal
05/01
17432
82
가지고 놀아지고 있어!?
동인
hatlatal
05/01 17432 82
소리
【간사이벤】야쿠자 아내가 거근에 네토라레 완전 패배할 때까지【도S용/KU100】
키도
05/01
12219
38
【간사이벤】야쿠자 아내가 거근에 네토라레 완전 패배할 때까지【도S용/KU100】
소리
키도
05/01 12219 38
소리
유부녀NTR - 오랜만에 만난 전 여친에게 배달지에서 억지로 키스하여 옛날의 쾌감을 떠올리게 하다 -
키도
05/01
9357
39
유부녀NTR - 오랜만에 만난 전 여친에게 배달지에서 억지로 키스하여 옛날의 쾌감을 떠올리게 하다 -
소리
키도
05/01 9357 39
동인
이노센트 아이돌 생섹스 합숙에 가다
hatlatal
05/01
19237
47
이노센트 아이돌 생섹스 합숙에 가다
동인
hatlatal
05/01 19237 47
복구
3.41 GB) RJ257653 계승되는 자의 고독
ㅇㅇ
05/01
20087
53
3.41 GB) RJ257653 계승되는 자의 고독
복구
ㅇㅇ
05/01 20087 53
소리
【오호 목소리×자지 아부】건방진 JK(처녀)을 좆밥중독의 고기 오나홀로 타락시킨 이야기【KU100】
키도
05/01
5285
39
【오호 목소리×자지 아부】건방진 JK(처녀)을 좆밥중독의 고기 오나홀로 타락시킨 이야기【KU100】
소리
키도
05/01 5285 39
동인
일필유(乳)혼 렌카 편
hatlatal
05/01
13318
56
일필유(乳)혼 렌카 편
동인
hatlatal
05/01 13318 56
소리
욕구 불만에 자위광인 음란한 유부녀과 남편 몰래 아이 만들기 교미
키도
05/01
11781
52
욕구 불만에 자위광인 음란한 유부녀과 남편 몰래 아이 만들기 교미
소리
키도
05/01 11781 52
소리
전 여친 탁란 계획
키도
05/01
5512
43
전 여친 탁란 계획
소리
키도
05/01 5512 43
영상
[5/1] 슈나 & 시온 & 고부타 (전생슬)
브레머튼
05/01
19845
138
[5/1] 슈나 & 시온 & 고부타 (전생슬)
영상
브레머튼
05/01 19845 138
소리
존나 섹시한 남친 있는 갸루 JK을 속여 합법적으로 NTR 임신 섹스했다 ㅋㅋㅋ【KU100 바이노럴】
키도
05/01
9490
42
존나 섹시한 남친 있는 갸루 JK을 속여 합법적으로 NTR 임신 섹스했다 ㅋㅋㅋ【KU100 바이노럴】
소리
키도
05/01 9490 42
동인
패러렐 체인저 어플
hatlatal
05/01
14524
42
패러렐 체인저 어플
동인
hatlatal
05/01 14524 42
영상
(한글자막) 시건방진 소악마들에게 어리광 받아서 패배하는 나
꽃사슴
05/01
28418
211
(한글자막) 시건방진 소악마들에게 어리광 받아서 패배하는 나
영상
꽃사슴
05/01 28418 211
정보
응석받이와 유사 그림체인 게임예고페이지가 있네
kkkkkk0909
05/01
8764
46
응석받이와 유사 그림체인 게임예고페이지가 있네
정보
kkkkkk0909
05/01 8764 46
소리
나를 괴롭히던 애의 엄마에 의한 사죄 엣치
키도
05/01
6255
38
나를 괴롭히던 애의 엄마에 의한 사죄 엣치
소리
키도
05/01 6255 38
소리
대출 아내의 NTR 보고 ~청초한 아내의 네토라레 조교~
키도
05/01
6017
30
대출 아내의 NTR 보고 ~청초한 아내의 네토라레 조교~
소리
키도
05/01 6017 30
소리
네토리/네토라레~청초한 젊은 아내 편~【네토리 조교/네토라레 보고】
키도
05/01
7149
38
네토리/네토라레~청초한 젊은 아내 편~【네토리 조교/네토라레 보고】
소리
키도
05/01 7149 38
소리
갸루 임신!~아다인 제가 갸루를 임신시켜 보았습니다~
키도
05/01
3884
35
갸루 임신!~아다인 제가 갸루를 임신시켜 보았습니다~
소리
키도
05/01 3884 35
소리
욕심 많은 모녀 이색 식사
키도
05/01
7167
31
욕심 많은 모녀 이색 식사
소리
키도
05/01 7167 31
소리
임신시키기 게임 제가 임신하면……살 수 있어요……
키도
05/01
5987
43
임신시키기 게임 제가 임신하면……살 수 있어요……
소리
키도
05/01 5987 43
영상
(한글자막) 최악으로 징그러운 아저씨에게 임신당해버리는 누나
꽃사슴
05/01
25851
166
(한글자막) 최악으로 징그러운 아저씨에게 임신당해버리는 누나
영상
꽃사슴
05/01 25851 166
소리
어디에나 있을 법한 얼굴의 그녀가 빼앗기다~ 네토라레의 쾌락 타락~
키도
05/01
12126
37
어디에나 있을 법한 얼굴의 그녀가 빼앗기다~ 네토라레의 쾌락 타락~
소리
키도
05/01 12126 37
소리
W 마법소녀가 더러운 좆밥자지에 아양떨며 억지로 봉사하게 되어버리는 세뇌 어플 3rd!!!
dasdaa
05/01
10971
63
W 마법소녀가 더러운 좆밥자지에 아양떨며 억지로 봉사하게 되어버리는 세뇌 어플 3rd!!!
소리
dasdaa
05/01 10971 63
번역
[업데이트 안내] 존재감 없는 여동생과의 소박한 일상 1.09rev.5
kkkkkk0909
05/01
42636
129
[업데이트 안내] 존재감 없는 여동생과의 소박한 일상 1.09rev.5
번역
kkkkkk0909
05/01 42636 129
동인
달아오른 변태 넬슨씨
hatlatal
05/01
11606
24
달아오른 변태 넬슨씨
동인
hatlatal
05/01 11606 24
동인
사랑의 묘약으로 역습!
hatlatal
05/01
16239
46
사랑의 묘약으로 역습!
동인
hatlatal
05/01 16239 46
야짤
AI, 셀레스포니아) 타락한 셀레스포니아와 하즈키
miso5
05/01
8224
72
AI, 셀레스포니아) 타락한 셀레스포니아와 하즈키
야짤
miso5
05/01 8224 72
s/somisoft
• 143,985 subscribers여러가지 다루는 서브
Created 05/17/2025, 14:58:43
Deleted comment.
Deleted comment.
Deleted comment.