Skip to content

Instantly share code, notes, and snippets.

@techygrrrl
Created August 19, 2022 23:49
Show Gist options
  • Save techygrrrl/4f169212629487796befbe868b3d1e79 to your computer and use it in GitHub Desktop.
Save techygrrrl/4f169212629487796befbe868b3d1e79 to your computer and use it in GitHub Desktop.
Twitch pop out chat bookmark action
/**
* open a chat window in a popup
*
* USAGE:
* - copy the entire contents of this file
* - in the URL field, type `javascript:` without the ticks
* - paste everything after the colon
*/
(function openTechygrrrlChat() {
const username = 'techygrrrl'
window.open(`https://www.twitch.tv/popout/${username}/chat`, `${username}_chat`, 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=1000');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment