Last active
February 6, 2024 15:09
-
-
Save navarr/4cbc0890fa44ff1a18a65d03f514fa6a to your computer and use it in GitHub Desktop.
Turn TikTok Live Stream Webpage into Chatbox only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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