새로고침 단축키가 없으면 챗지피티로 딸깍..
// ==UserScript==
// @name kone.gg R 키 새로고침
// @namespace http://tampermonkey.net/
// @version 1.0
// @description kone.gg에서 R 키로 페이지 새로고침
// @author You
// @match https://kone.gg/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('keydown', function(e) {
// 입력창(focused input, textarea 등)에서는 무시
const tag = e.target.tagName.toLowerCase();
const isTyping = tag === 'input' || tag === 'textarea' || e.target.isContentEditable;
if (isTyping) return;
// R 키 (대소문자 구분 없이)
if (e.key === 'r' || e.key === 'R') {
e.preventDefault();
location.reload();
}
}, false);
})();진짜 딱 r 새로고침 기능만 있음
챗지피티는 신이야
