Skip to content

Instantly share code, notes, and snippets.

@Tcip
Tcip / Copy Name and Twitch Channel to Clipboard (Bookmarklet).js
Created July 2, 2025 14:25
Copy Player Name and Twitch Channel to Clipboard for Embervale
javascript:(function()%7B(async%20function()%20%7Bconst%20playerNameElement%20%3D%20document.querySelector(%22.character-menu-background%20span%5Bstyle%5E%3D'font-size'%5D%22)%3Bconst%20playerTwitchChannelElement%20%3D%20document.querySelector(%22.character-menu-background%20.popper%22)%3Bif%20(playerNameElement%20%26%26%20playerTwitchChannelElement)%20%7Btry%20%7Bawait%20navigator.clipboard.writeText(%60%24%7BplayerNameElement.textContent.trim()%7D%20-%20%24%7BplayerTwitchChannelElement.textContent.trim()%7D%60)%3B%7D%20catch%20(error)%20%7Bconsole.error(%22Error%20copying%20text%20to%20clipboard%3A%22%2C%20error)%3B%7D%7D%20else%20%7Bconsole.error(%22One%20or%20more%20required%20elements%20not%20found%22)%3B%7D%7D())%7D)()