kone
ainovel

ainovel

Base64 디코딩 아이콘 추가 스크립트.

11/05/2025, 05:53:43
정보
954 views · 10 likes

// ==UserScript==
// @name Base64 Decoder Tool (Minimized)
// @namespace http://tampermonkey.net/
// @version 1.5
// @description Adds a minimized, clickable Base64 decoding icon. On click, it pastes clipboard content if visible. Decoded URLs are clickable.
// @author ChatGPT Expert
// @match https://kone.gg/*
// @exclude https://kone.gg/
// @include https://kone.gg/s/ainovel*
// @grant none
// @run-at document-idle
// ==/UserScript==

(function() {
'use strict';

// 해당 스크립트가 'ainovel' 서브 페이지에서만 실행되도록 재차 확인
if (!window.location.href.includes('kone.gg/s/ainovel')) {
return;
}

// --- 1. Base64 디코딩 함수 ---
function base64Decode(encodedString) {
try {
const binaryString = atob(encodedString.trim());
const utf8String = decodeURIComponent(
Array.prototype.map.call(binaryString, (c) => {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
}).join('')
);
return utf8String;
} catch (e) {
return 'ERROR: Invalid Base64 string.';
}
}

// --- 2. URL 유효성 검사 함수 ---
function isValidUrl(string) {
try {
const url = new URL(string);
return url.protocol === "http:" || url.protocol === "https:";
} catch (e) {
return false;
}
}

// --- 3. 디코딩 결과를 UI에 반영하는 함수 ---
function updateDecodedOutput(decodedString) {
resultField.value = decodedString;
linkOutput.innerHTML = '';

// 디코딩 결과가 유효한 URL인지 확인
if (decodedString && decodedString.length < 2048 && isValidUrl(decodedString)) {
const link = document.createElement('a');
link.href = decodedString;
link.target = '_blank';
link.textContent = '결과 링크 새 탭에서 열기 ➔';
link.style.cssText = `
color: #e5c07b;
text-decoration: underline;
cursor: pointer;
font-weight: bold;
display: block;
margin: 5px 0;
`;
linkOutput.appendChild(link);

resultField.value = "디코딩 성공! 위에 생성된 링크를 클릭하세요.";
resultField.style.color = '#98c379';
} else {
resultField.style.color = '#d19a66';
}

if (decodedString.startsWith('ERROR')) {
resultField.style.color = '#e06c75';
}
}

function performDecoding() {
const encoded = inputField.value.trim();
if (encoded) {
const decoded = base64Decode(encoded);
updateDecodedOutput(decoded);
} else {
resultField.value = '디코딩 결과';
linkOutput.innerHTML = '';
resultField.style.color = '#d19a66';
}
}


// --- 4. UI 요소 생성 및 스타일링 (이전과 동일) ---

const container = document.createElement('div');
container.id = 'b64-decoder-popup';
container.style.cssText = `
position: fixed;
top: 50px;
left: 50%;
transform: translateX(-50%);
z-index: 99998;
padding: 10px;
background: rgba(40, 44, 52, 0.98);
border: 2px solid #61afef;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
width: 90%;
max-width: 300px;
color: #abb2bf;
display: none;
flex-direction: column;
gap: 8px;
`;

const title = document.createElement('h4');
title.textContent = 'Base64 Decoder';
title.style.cssText = `
margin: 0;
color: #98c379;
text-align: center;
font-size: 1.1em;
padding-bottom: 5px;
border-bottom: 1px dashed #5c6370;
`;

const inputField = document.createElement('textarea');
inputField.placeholder = 'Base64 입력...';
inputField.style.cssText = `
width: 100%;
min-height: 40px;
padding: 5px;
border: 1px solid #5c6370;
border-radius: 4px;
background: #20232a;
color: #abb2bf;
box-sizing: border-box;
resize: vertical;
font-family: monospace;
font-size: 0.85em;
`;

const linkOutput = document.createElement('div');
linkOutput.id = 'b64-link-output';
linkOutput.style.cssText = `
min-height: 1.5em;
text-align: center;
margin-top: -5px;
font-size: 0.9em;
`;

const resultField = document.createElement('textarea');
resultField.readOnly = true;
resultField.placeholder = '디코딩 결과';
resultField.style.cssText = `
width: 100%;
min-height: 60px;
padding: 5px;
border: 1px solid #5c6370;
border-radius: 4px;
background: #20232a;
color: #d19a66;
box-sizing: border-box;
resize: vertical;
font-family: monospace;
font-size: 0.85em;
`;

const toggleIcon = document.createElement('button');
toggleIcon.id = 'b64-toggle-icon';
toggleIcon.innerHTML = '⎂';
toggleIcon.title = 'Base64 디코더 열기/닫기 (클립보드 붙여넣기)';
toggleIcon.style.cssText = `
position: fixed;
top: 5px;
left: 50%;
transform: translateX(-50%);
z-index: 99999;
width: 40px;
height: 40px;
border-radius: 50%;
background: #61afef;
color: white;
border: 2px solid #569cd6;
cursor: pointer;
font-size: 1.2em;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
transition: background 0.2s, transform 0.2s;
`;
toggleIcon.onmouseover = () => toggleIcon.style.background = '#569cd6';
toggleIcon.onmouseout = () => toggleIcon.style.background = '#61afef';

// --- 5. 요소 배치 및 이벤트 리스너 ---

container.appendChild(title);
container.appendChild(inputField);
container.appendChild(linkOutput);
container.appendChild(resultField);

document.body.appendChild(toggleIcon);
document.body.appendChild(container);

inputField.addEventListener('input', performDecoding);
inputField.addEventListener('change', performDecoding);

// --- 6. 토글 및 클립보드 기능 ---

let isVisible = localStorage.getItem('b64-decoder-visible') === 'true';
if (isVisible) {
container.style.display = 'flex';
toggleIcon.style.background = '#e06c75';
}

toggleIcon.addEventListener('click', async () => {

// 1. 상태 토글
isVisible = !isVisible;

if (isVisible) {
// 2. 패널 열기
container.style.display = 'flex';
toggleIcon.style.background = '#e06c75';
localStorage.setItem('b64-decoder-visible', 'true');

// 3. 클립보드에서 내용 가져오기 및 붙여넣기 (비동기)
if (navigator.clipboard && navigator.clipboard.readText) {
try {
const clipboardText = await navigator.clipboard.readText();

// 클립보드 내용이 Base64 문자열로 보이는 경우에만 자동 붙여넣기
// 너무 짧거나 길지 않고, 특수 문자가 적절히 포함되어야 함.
if (clipboardText && clipboardText.length > 5 && clipboardText.length < 5000) {
inputField.value = clipboardText.trim();
performDecoding();
inputField.focus();
inputField.select(); // 전체 선택하여 바로 덮어쓰기 쉽게 함
} else {
inputField.focus();
}
} catch (err) {
console.error('클립보드 접근 거부 또는 오류:', err);
inputField.placeholder = '클립보드 접근 권한이 필요합니다.';
inputField.focus();
}
} else {
console.warn("브라우저가 navigator.clipboard를 지원하지 않거나 보안 문제로 접근이 거부되었습니다.");
inputField.focus();
}

} else {
// 4. 패널 닫기
container.style.display = 'none';
toggleIcon.style.background = '#61afef';
localStorage.setItem('b64-decoder-visible', 'false');
}
});

})();

10
2 comments
Sign in to comment
11/05/25
편의성 스크립트. 1. 탬퍼멍키에 추가. 2. 사이트에 입장하면 aa버튼이 화면 위쪽 가운데에 생김. 3. base64암호화된 글자들을 긁어서 ctrl+c복사하고 aa아이콘 클릭. 4. 링크로 가기 누르면 새탭에서 링크로 이동됩니다.
11/05/25
오. ㄳ합니다
Sign in to comment
나루토 패러디에서 꼭 나오는게 다이묘 닌자 관계 비난인데
일반
sjw7whch8
05/12 3222 -3
평행차원 이던 뭔던 클래식 표절물 없나요???
잡담
gracchus12
05/12 1092 1
나는 산속에서 땅을 딛고 신선이 된다 838
[복구]
xian8693
05/12 3080 29
dnd류가 잘 쓰면 진짜 재밌는 듯
일반
dlatldyd123
05/12 1652 0
스피드 쌀먹 공유 모음 20260512
[일반]
tassdar
05/12 5912 113
[뱅드림x봇치x걸밴크]단지 몸매만 밝혔을 뿐인데 안 되는 건가요? 1-339
[패러디]
hyun6871
05/12 4162 24
[패러디]원피스 카이도의 인재를 가로채는 법 후기
후기
74839
05/12 2416 4
포켓몬 얘네 10톤트럭에 묘한 집착이있네
잡담
하이바라
05/12 1107 1
어디로 갈 생각이지? 2026 05 12
[일반]
金日成綜合大學
05/12 5007 77
사펑 도그타운 이거 재미는 있는데 이름이 시발
잡담
dunblue
05/12 1955 2
아포칼립스류 쌀먹
[일반]
mlb5050
05/12 4139 83
슬라네쉬 사도로 시작하는 워해머 소설
잡담
金日成綜合大學
05/12 1288 7
개쩌는 하렘물 찾았다
잡담
金日成綜合大學
05/12 4363 7
뱅드림 교수님, 이거 번역 어떻게 할지 잠깐 봐주실 수 있을 까요?
잡담
hyun6871
05/12 1472 2
멸문의 밤, 나는 역근경을 대원만 1-302
[일반]
nvcsw2314
05/12 3165 46
마블에서 제일 민폐 캐릭인게 데어데블인듯
일반
sjw7whch8
05/12 1050 0
던전버섯 볼 때 뽀짝이들 어떻게 생겼다고 상상하고 보시나요?
잡담
halli
05/12 1273 2
나뭇잎의 고아는 쌀을 훔친다 2026 05 12
[일반]
金日成綜合大學
05/12 4095 68
[실지주] 실력 지상주의가 아니라 내가 천하를 지배하는 것이다! (1~177)
[패러디]
assadsad
05/12 3808 17
제4차 영석 금융위기 재밌는데
잡담
ibuprofen
05/12 1837 0
[코난] 코난 세계의 수정자 373 완.
[패러디]
rlawjrwnd
05/12 2617 33
나는 산속에서 땅을 딛고 신선이 된다 복구요청 부탁드립니다.
복구 요청
realred0503
05/12 1707 1
복구 게시글에 감사 코멘 달으려 했더니 안됨...
잡담
srkone
05/12 1049 1
진주채취 요거 재밌는데
잡담
신호등
05/12 1114 2
[마블] 미국만화-내가 홈랜더다 1-350 복구 요청드립니다.
복구 요청
ehhdgah
05/12 1102 1
서브 주제하고는 상관 없는 이야기이긴 한데 토스 환급금 서비스 이용하시는 분들
잡담
naxlamas
05/12 1354 10
[원피스] 해적의 재앙 1-551
[패러디]
야돈
05/12 3760 51
초신기계사 복구
[복구]
wkdwo
05/12 1336 13
해리포터 미술 능력 소설 뭐였죠?
질문
rt7777
05/12 1519 0
[초신기계사 1-1463화 외전 2화(완)] 복구 요청 드립니다.
복구 요청
후디니
05/12 1058 1