Skip to content

Instantly share code, notes, and snippets.

@navarr
Last active February 6, 2024 15:09
Show Gist options
  • Save navarr/4cbc0890fa44ff1a18a65d03f514fa6a to your computer and use it in GitHub Desktop.
Save navarr/4cbc0890fa44ff1a18a65d03f514fa6a to your computer and use it in GitHub Desktop.
Turn TikTok Live Stream Webpage into Chatbox only
/* Hide what doesn't matter */
div[class*="DivLiveContainer"] > div[class*="DivLiveContent"] { display: none; } /* Video */
div[class*="DivSideNavContainer"] { display: none; } /* Sidebar */
div[class*="DivTopViewersContainer"] { display: none; } /* Top Viewers */
div[class^="vidiq"] { display: none; } /* Vid-IQ Floating Widget */
/* div[class*="DivBottomStickyMessageContainer"] { display: none; } /* Join Messages */
/* Make Chatbox Full-sized */
div[class*="DivChatRoomAnimationContainer"] { width: 100%; display: block !important; }
/* Make gifts dark red background to notice easier */
div[class*="DivChatMessageList"] > div:not([data-e2e]) { background: darkred; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment