온라인 키워드 클러스터링 도구 (Keyword Clustering)


${activeDict.shareLabel}

`; } else if (type === 'embed') { title = activeDict.embedTitle; const code = ``; content = ``; } else if (type === 'cite') { title = activeDict.citeTitle; const citation = activeDict.citeCitation; content = `
${citation}
`; } document.getElementById('utilityModalTitle').innerText = title; document.getElementById('utilityModalBody').innerHTML = content; new bootstrap.Modal(document.getElementById('utilityModal')).show(); } function copyValue(id) { const input = document.getElementById(id); input.select(); document.execCommand("copy"); alert("복사되었습니다!"); } function copyRawText(text) { navigator.clipboard.writeText(text).then(() => { alert("인용 정보가 복사되었습니다!"); }); } function handleUserAction(btn, slug, type) { const key = type + '_' + slug; const icon = btn.querySelector('i'); const activeClass = type === 'hearted' ? 'fa-heart' : 'fa-bookmark'; if (!btn.classList.contains('active')) { btn.classList.add('active'); icon.className = 'fa-solid ' + activeClass; localStorage.setItem(key, 'true'); } else { btn.classList.remove('active'); icon.className = 'fa-regular ' + activeClass; localStorage.removeItem(key); } }