├── .browserslistrc ├── .devcontainer ├── credentials.template.json └── devcontainer.json ├── .editorconfig ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── HEAT.md ├── LICENCE ├── PUBLIC_API.md ├── README.md ├── SCRAP_YOUTUBE_LIVE_CHAT.md ├── SPOTIFY.md ├── SPOTIFY_FR.md ├── babel.config.js ├── bootstrap-pm2.json ├── env.conf ├── env.d.ts ├── gource.cmd ├── i18n ├── de │ ├── about.json │ └── global.json ├── en │ ├── about.json │ ├── account.json │ ├── alert.json │ ├── announcement.json │ ├── automod.json │ ├── bingo.json │ ├── bingo_grid.json │ ├── changelog.json │ ├── chat.json │ ├── chat_poll.json │ ├── cmdmenu.json │ ├── connexions.json │ ├── counter.json │ ├── credits_control.json │ ├── discord.json │ ├── donate.json │ ├── donation_goals.json │ ├── donor.json │ ├── elevenlabs.json │ ├── emergency.json │ ├── error.json │ ├── extensions.json │ ├── followbot.json │ ├── gaza.json │ ├── global.json │ ├── gngngn.json │ ├── goxlr.json │ ├── greet.json │ ├── groq.json │ ├── heat.json │ ├── home.json │ ├── kofi.json │ ├── liveusers.json │ ├── login.json │ ├── logout.json │ ├── lumia.json │ ├── mixitup.json │ ├── music.json │ ├── obs.json │ ├── outdated_data.json │ ├── overlay.json │ ├── params.json │ ├── patreon.json │ ├── pin.json │ ├── playability.json │ ├── poll.json │ ├── prediction.json │ ├── premium.json │ ├── pronouns.json │ ├── qna.json │ ├── raffle.json │ ├── raid.json │ ├── rewards.json │ ├── sammi.json │ ├── search.json │ ├── server.json │ ├── share_params.json │ ├── spoiler.json │ ├── sponsor.json │ ├── stream.json │ ├── streamdeck.json │ ├── streamelements.json │ ├── streamerbot.json │ ├── streamlabs.json │ ├── streamsocket.json │ ├── suggestion.json │ ├── summary.json │ ├── tiktok.json │ ├── tiltify.json │ ├── timers.json │ ├── tipeee.json │ ├── tips.json │ ├── tracked.json │ ├── train.json │ ├── triggers.json │ ├── tts.json │ ├── twitch_bot.json │ ├── usercard.json │ ├── userlist.json │ ├── values.json │ ├── voice.json │ ├── voicemod.json │ └── whispers.json └── fr │ ├── about.json │ ├── account.json │ ├── alert.json │ ├── announcement.json │ ├── automod.json │ ├── bingo.json │ ├── bingo_grid.json │ ├── changelog.json │ ├── chat.json │ ├── chat_poll.json │ ├── cmdmenu.json │ ├── connexions.json │ ├── counter.json │ ├── credits_control.json │ ├── discord.json │ ├── donate.json │ ├── donation_goals.json │ ├── donor.json │ ├── elevenlabs.json │ ├── emergency.json │ ├── error.json │ ├── extensions.json │ ├── followbot.json │ ├── gaza.json │ ├── global.json │ ├── gngngn.json │ ├── goxlr.json │ ├── greet.json │ ├── groq.json │ ├── heat.json │ ├── home.json │ ├── kofi.json │ ├── liveusers.json │ ├── login.json │ ├── logout.json │ ├── lumia.json │ ├── mixitup.json │ ├── music.json │ ├── obs.json │ ├── outdated_data.json │ ├── overlay.json │ ├── params.json │ ├── patreon.json │ ├── pin.json │ ├── playability.json │ ├── poll.json │ ├── prediction.json │ ├── premium.json │ ├── pronouns.json │ ├── qna.json │ ├── raffle.json │ ├── raid.json │ ├── rewards.json │ ├── sammi.json │ ├── search.json │ ├── server.json │ ├── share_params.json │ ├── spoiler.json │ ├── sponsor.json │ ├── stream.json │ ├── streamdeck.json │ ├── streamelements.json │ ├── streamerbot.json │ ├── streamlabs.json │ ├── streamsocket.json │ ├── suggestion.json │ ├── summary.json │ ├── tiktok.json │ ├── tiltify.json │ ├── timers.json │ ├── tipeee.json │ ├── tips.json │ ├── tracked.json │ ├── train.json │ ├── triggers.json │ ├── tts.json │ ├── twitch_bot.json │ ├── usercard.json │ ├── userlist.json │ ├── values.json │ ├── voice.json │ ├── voicemod.json │ └── whispers.json ├── index.html ├── labels-pm2.json ├── lande.config.js ├── overlay.html ├── overlayLabel.html ├── package-lock.json ├── package.json ├── public.html ├── scripts └── versionSuffix.mjs ├── src_back ├── bootstrap.ts ├── controllers │ ├── AbstractController.ts │ ├── AdminController.ts │ ├── ApiController.ts │ ├── AuthController.ts │ ├── BingoGridController.ts │ ├── DiscordController.ts │ ├── DonorController.ts │ ├── FileServeController.ts │ ├── GoogleController.ts │ ├── KofiController.ts │ ├── MiddlewareController.ts │ ├── PatreonController.ts │ ├── PaypalController.ts │ ├── RemoteModController.ts │ ├── SSEController.ts │ ├── SpotifyController.ts │ ├── StreamelementsController.ts │ ├── StreamlabsController.ts │ ├── TenorController.ts │ ├── TiltifyController.ts │ ├── TipeeeController.ts │ ├── UluleController.ts │ └── UserController.ts └── utils │ ├── Config.ts │ ├── DataSchema.ts │ ├── I18n.ts │ ├── Logger.ts │ ├── TwitchUtils.ts │ └── Utils.ts ├── src_front ├── App.vue ├── AppOverlay.vue ├── AppPublic.vue ├── ISpeechRecognition.ts ├── Languages.ts ├── TranslatableLanguages.ts ├── assets │ ├── chatPlaceholder.png │ ├── chatPlaceholder_gradient.png │ ├── favicon.svg │ ├── fonts │ │ ├── AzeretMono-Medium.ttf │ │ ├── Nunito-Bold.ttf │ │ ├── Nunito-Italic.ttf │ │ ├── Nunito-Regular.ttf │ │ ├── OpendyslexicBold.otf │ │ ├── OpendyslexicBoldItalic.otf │ │ ├── OpendyslexicItalic.otf │ │ ├── OpendyslexicRegular.otf │ │ ├── Roboto-Regular.ttf │ │ ├── inter-latin.woff2 │ │ └── nbsp.woff2 │ ├── goxlr │ │ ├── goxlr.svg │ │ └── goxlrMini.svg │ ├── icons │ │ ├── ad.svg │ │ ├── add.svg │ │ ├── alert.svg │ │ ├── animate.svg │ │ ├── announcement.svg │ │ ├── anon.svg │ │ ├── api.svg │ │ ├── arrowDown.svg │ │ ├── arrowRight.svg │ │ ├── automod.svg │ │ ├── avatar.svg │ │ ├── back.svg │ │ ├── badge.svg │ │ ├── balance.svg │ │ ├── ban.svg │ │ ├── bingo.svg │ │ ├── bingo_grid.svg │ │ ├── bits.svg │ │ ├── block.svg │ │ ├── boost.svg │ │ ├── bot.svg │ │ ├── brave.svg │ │ ├── brightness.svg │ │ ├── broadcast.svg │ │ ├── broadcaster.svg │ │ ├── change.svg │ │ ├── channelPoints.svg │ │ ├── charity.svg │ │ ├── chatCommand.svg │ │ ├── chatPoll.svg │ │ ├── chatSugg.svg │ │ ├── checkmark.svg │ │ ├── clearChat.svg │ │ ├── click.svg │ │ ├── clip.svg │ │ ├── coffee.svg │ │ ├── coin.svg │ │ ├── color.svg │ │ ├── cols.svg │ │ ├── commands.svg │ │ ├── condition.svg │ │ ├── conversation.svg │ │ ├── coord_x.svg │ │ ├── coord_y.svg │ │ ├── copy.svg │ │ ├── count.svg │ │ ├── count_placeholder.svg │ │ ├── countdown.svg │ │ ├── credits.svg │ │ ├── cross.svg │ │ ├── css.svg │ │ ├── date.svg │ │ ├── debug.svg │ │ ├── delete.svg │ │ ├── dice.svg │ │ ├── dice_placeholder.svg │ │ ├── disable.svg │ │ ├── discord.svg │ │ ├── distort.svg │ │ ├── donor.svg │ │ ├── donor_placeholder.svg │ │ ├── down.svg │ │ ├── download.svg │ │ ├── dragZone.svg │ │ ├── easing.svg │ │ ├── edit.svg │ │ ├── elevated.svg │ │ ├── elevenlabs.svg │ │ ├── elgato.svg │ │ ├── emergency.svg │ │ ├── emote.svg │ │ ├── enter.svg │ │ ├── extension.svg │ │ ├── fade.svg │ │ ├── filters.svg │ │ ├── firstTime.svg │ │ ├── fix.svg │ │ ├── folder.svg │ │ ├── follow.svg │ │ ├── follow_outline.svg │ │ ├── font.svg │ │ ├── fontSize.svg │ │ ├── fullscreen.svg │ │ ├── gift.svg │ │ ├── github.svg │ │ ├── goal.svg │ │ ├── goxlr.svg │ │ ├── goxlr_bleep.svg │ │ ├── goxlr_fx.svg │ │ ├── graphicFilters.svg │ │ ├── graphicFiltersOff.svg │ │ ├── groq.svg │ │ ├── group.svg │ │ ├── hand.svg │ │ ├── heat.svg │ │ ├── help.svg │ │ ├── helpDesk.svg │ │ ├── hide.svg │ │ ├── highlight.svg │ │ ├── highlight_del.svg │ │ ├── history.svg │ │ ├── html.svg │ │ ├── hypeChat.svg │ │ ├── id.svg │ │ ├── idea.svg │ │ ├── increment.svg │ │ ├── info.svg │ │ ├── internet.svg │ │ ├── key.svg │ │ ├── kick.svg │ │ ├── kofi.svg │ │ ├── label.svg │ │ ├── layout.svg │ │ ├── layout_2cols.svg │ │ ├── layout_3cols.svg │ │ ├── layout_center.svg │ │ ├── layout_col.svg │ │ ├── layout_colLeft.svg │ │ ├── layout_colRight.svg │ │ ├── layout_left.svg │ │ ├── layout_right.svg │ │ ├── leaderboard.svg │ │ ├── leave.svg │ │ ├── left.svg │ │ ├── likes.svg │ │ ├── list.svg │ │ ├── live.svg │ │ ├── loader.svg │ │ ├── lock.svg │ │ ├── lock_fit.svg │ │ ├── logout.svg │ │ ├── loop.svg │ │ ├── lumia.svg │ │ ├── magnet.svg │ │ ├── margin.svg │ │ ├── markRead.svg │ │ ├── max.svg │ │ ├── merge.svg │ │ ├── microphone.svg │ │ ├── microphone_mute.svg │ │ ├── microphone_recording.svg │ │ ├── min.svg │ │ ├── minus.svg │ │ ├── mixitup.svg │ │ ├── mod.svg │ │ ├── move.svg │ │ ├── music.svg │ │ ├── mute.svg │ │ ├── muteAll.svg │ │ ├── newtab.svg │ │ ├── next.svg │ │ ├── noMusic.svg │ │ ├── nochat.svg │ │ ├── notification.svg │ │ ├── number.svg │ │ ├── obs.svg │ │ ├── offline.svg │ │ ├── online.svg │ │ ├── orderable.svg │ │ ├── overlay.svg │ │ ├── params.svg │ │ ├── partner.svg │ │ ├── patreon.svg │ │ ├── pause.svg │ │ ├── paypal.svg │ │ ├── percent.svg │ │ ├── pin.svg │ │ ├── pipette.svg │ │ ├── placeholder.svg │ │ ├── play.svg │ │ ├── playability.svg │ │ ├── poll.svg │ │ ├── polygon.svg │ │ ├── prediction.svg │ │ ├── premium.svg │ │ ├── presentation.svg │ │ ├── press.svg │ │ ├── prev.svg │ │ ├── prime.svg │ │ ├── pros.svg │ │ ├── qna.svg │ │ ├── question.svg │ │ ├── quote.svg │ │ ├── raid.svg │ │ ├── raidHighlight.svg │ │ ├── read.svg │ │ ├── recordStart.svg │ │ ├── recordStop.svg │ │ ├── refresh.svg │ │ ├── refundPoints.svg │ │ ├── release.svg │ │ ├── reply.svg │ │ ├── returning.svg │ │ ├── reward_highlight.svg │ │ ├── right.svg │ │ ├── rightClick.svg │ │ ├── rotate.svg │ │ ├── rows.svg │ │ ├── sad.svg │ │ ├── sammi.svg │ │ ├── save.svg │ │ ├── scale.svg │ │ ├── screenshot.svg │ │ ├── scroll.svg │ │ ├── scrollDown.svg │ │ ├── scrollUp.svg │ │ ├── scroll_horizontal.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── shadow.svg │ │ ├── share.svg │ │ ├── sharedChat.svg │ │ ├── shield.svg │ │ ├── shieldMode.svg │ │ ├── shoutout.svg │ │ ├── show.svg │ │ ├── shuffle.svg │ │ ├── skip.svg │ │ ├── slow.svg │ │ ├── split.svg │ │ ├── splitter.svg │ │ ├── spoiler.svg │ │ ├── spotify.svg │ │ ├── stars.svg │ │ ├── stop.svg │ │ ├── streamelements.svg │ │ ├── streamerbot.svg │ │ ├── streamlabs.svg │ │ ├── streamsocket.svg │ │ ├── sub.svg │ │ ├── team.svg │ │ ├── test.svg │ │ ├── theme.svg │ │ ├── thickness.svg │ │ ├── ticket.svg │ │ ├── tiktok.svg │ │ ├── tiktok_diamond.svg │ │ ├── tiltify.svg │ │ ├── timeout.svg │ │ ├── timer.svg │ │ ├── tipeee.svg │ │ ├── train.svg │ │ ├── train_boost.svg │ │ ├── translate.svg │ │ ├── trash.svg │ │ ├── tts.svg │ │ ├── twitch.svg │ │ ├── twitch_charity.svg │ │ ├── twitchat.svg │ │ ├── twitter.svg │ │ ├── ulule.svg │ │ ├── unban.svg │ │ ├── unbanRequest.svg │ │ ├── unblock.svg │ │ ├── unfollow.svg │ │ ├── unlock.svg │ │ ├── unmod.svg │ │ ├── unmute.svg │ │ ├── unpin.svg │ │ ├── unvip.svg │ │ ├── update.svg │ │ ├── upload.svg │ │ ├── url.svg │ │ ├── user.svg │ │ ├── vibrate.svg │ │ ├── vibratePhone.svg │ │ ├── vip.svg │ │ ├── voice.svg │ │ ├── voicemod.svg │ │ ├── volume.svg │ │ ├── watchStreak.svg │ │ ├── whispers.svg │ │ └── youtube.svg │ ├── img │ │ ├── barracuda.png │ │ ├── bitswall │ │ │ ├── 1.png │ │ │ ├── 100.png │ │ │ ├── 1000.png │ │ │ ├── 10000.png │ │ │ ├── 10000_tex.png │ │ │ ├── 1000_tex.png │ │ │ ├── 100_tex.png │ │ │ ├── 1_tex.png │ │ │ ├── 5000.png │ │ │ ├── 5000_tex.png │ │ │ └── cheermotes_render.gif │ │ ├── bluesky.svg │ │ ├── blured_line.png │ │ ├── boxes.svg │ │ ├── chat_animation │ │ │ ├── cosmic-abyss_1.jpg │ │ │ └── cosmic-abyss_2.jpg │ │ ├── cursorDemo_default.png │ │ ├── cursorDemo_default.svg │ │ ├── cursorDemo_pointer.png │ │ ├── cursorDemo_pointer.svg │ │ ├── data_sharing │ │ │ ├── switchAccount_en.png │ │ │ └── switchAccount_fr.png │ │ ├── defaultCover.svg │ │ ├── default_music_cover.png │ │ ├── distortions │ │ │ ├── bubble.png │ │ │ ├── bubble2.png │ │ │ ├── bubble_shadow.png │ │ │ ├── heart.png │ │ │ ├── heart_shadow.png │ │ │ ├── ripples.png │ │ │ ├── ripples_shadow.png │ │ │ └── twirl.png │ │ ├── eating.gif │ │ ├── github.png │ │ ├── goldenKappa.png │ │ ├── goxlr_features.png │ │ ├── heat_anonymous_en.gif │ │ ├── heat_anonymous_fr.gif │ │ ├── homepage │ │ │ ├── alert.webm │ │ │ ├── bingo.gif │ │ │ ├── clickToPlay.png │ │ │ ├── conversation.webm │ │ │ ├── custom_badges_name.gif │ │ │ ├── emergency.webm │ │ │ ├── goxlr.png │ │ │ ├── grain.png │ │ │ ├── grain_dark.png │ │ │ ├── greet.png │ │ │ ├── letters │ │ │ │ ├── a.svg │ │ │ │ ├── c.svg │ │ │ │ ├── h.svg │ │ │ │ ├── i.svg │ │ │ │ ├── t.svg │ │ │ │ └── w.svg │ │ │ ├── merge_messages.gif │ │ │ ├── minibadges.png │ │ │ ├── musicPlayer.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── raffle.gif │ │ │ ├── readMark.webm │ │ │ ├── save.webm │ │ │ ├── search.png │ │ │ ├── shadow.png │ │ │ ├── spoiler.png │ │ │ ├── streamdeck.jpg │ │ │ ├── tiktok_messages.png │ │ │ ├── triggers.png │ │ │ ├── tts.gif │ │ │ ├── voiceControl.webm │ │ │ ├── voicemod.webp │ │ │ └── youtube_messages.png │ │ ├── hypetrain_avatar.png │ │ ├── instagram.png │ │ ├── logout.png │ │ ├── mrbean.png │ │ ├── multiblindtest.png │ │ ├── musicExampleCover.jpg │ │ ├── obs-ws_credentials.png │ │ ├── obs_dock.png │ │ ├── overlays │ │ │ ├── ad_break.jpg │ │ │ ├── animated_text.jpg │ │ │ ├── bingo_grids.jpg │ │ │ ├── bits_wall.jpg │ │ │ ├── chat_poll.jpg │ │ │ ├── counters.jpg │ │ │ ├── custom_train.jpg │ │ │ ├── donation_goals.jpg │ │ │ ├── ending_credits.jpg │ │ │ ├── highlights.jpg │ │ │ ├── interractive_distortions.jpg │ │ │ ├── labels.jpg │ │ │ ├── polls.jpg │ │ │ ├── predictions.jpg │ │ │ ├── raffle.jpg │ │ │ ├── spotify.jpg │ │ │ ├── timer.jpg │ │ │ └── ulule.jpg │ │ ├── papa.png │ │ ├── param_examples │ │ │ ├── chatHighlightVideo.jpg │ │ │ ├── clickable_mentions.png │ │ │ ├── conversation.gif │ │ │ ├── firstUserBadge.png │ │ │ ├── greetThem.png │ │ │ ├── groupIdenticalMessage.gif │ │ │ ├── liveMessages.png │ │ │ ├── merge_messages.gif │ │ │ ├── minibadges.png │ │ │ ├── multichat.png │ │ │ ├── nofollow.png │ │ │ ├── raid_count.png │ │ │ ├── raid_infos.png │ │ │ ├── recent_account.png │ │ │ ├── rewardDetails.png │ │ │ ├── stop_countdown.gif │ │ │ ├── stop_timer.gif │ │ │ ├── trackUser.png │ │ │ ├── translate_messages.png │ │ │ ├── translate_username.png │ │ │ ├── verticalLayout.png │ │ │ └── voicemod_reset.png │ │ ├── shader_warning.png │ │ ├── spoilerTutorial.png │ │ ├── streamdeck_credentials.png │ │ ├── streamsocket_graph.png │ │ ├── streamsocket_secret.png │ │ ├── tiktok.png │ │ ├── twitch.png │ │ ├── work.svg │ │ ├── worried_face.svg │ │ ├── youtube_goxlr1.jpg │ │ ├── youtube_goxlr2.jpg │ │ ├── youtube_heat1.jpg │ │ └── youtube_heat2.jpg │ ├── logo.svg │ ├── sounds │ │ ├── notification.mp3 │ │ ├── win.mp3 │ │ └── wizz.mp3 │ └── youtube │ │ └── emote_list.json ├── components │ ├── AbstractSidePanel.ts │ ├── AnchorsMenu.vue │ ├── AppLangSelector.vue │ ├── ButtonNotification.vue │ ├── Checkbox.vue │ ├── ClearButton.vue │ ├── CurrencyPatternInput.vue │ ├── DurationForm.vue │ ├── GroqSummaryFilterForm.vue │ ├── Icon.vue │ ├── InfiniteList.vue │ ├── LabelsEditorEntry.vue │ ├── LangSelector.vue │ ├── PermissionsForm.vue │ ├── PlaceholderField.vue │ ├── PlacementSelector.vue │ ├── PremiumLockLayer.vue │ ├── ProgressBar.vue │ ├── Slider.vue │ ├── Splitter.vue │ ├── SwitchButton.vue │ ├── TTButton.vue │ ├── TabMenu.vue │ ├── ThemeSelector.vue │ ├── ToggleBlock.vue │ ├── ToggleButton.vue │ ├── VolumeBar.vue │ ├── bingo │ │ └── BingoForm.vue │ ├── bingo_grid │ │ └── BingoGridForm.vue │ ├── changelog │ │ ├── Changelog.vue │ │ ├── Changelog3rdPartyAnim.vue │ │ └── ChangelogLabels.vue │ ├── channelnotifications │ │ ├── BingoState.vue │ │ ├── ChannelNotifications.vue │ │ ├── ChatPollState.vue │ │ ├── HypeTrainState.vue │ │ ├── PollState.vue │ │ ├── PredictionState.vue │ │ ├── RaffleState.vue │ │ └── RaidState.vue │ ├── chatAlert │ │ └── ChatAlertMessage.vue │ ├── chatSugg │ │ ├── ChatSuggestionForm.vue │ │ └── ChatSuggestionState.vue │ ├── chatform │ │ ├── AutocompleteChatForm.vue │ │ ├── BingoGridControls.vue │ │ ├── ChannelSwitcher.vue │ │ ├── ChatForm.vue │ │ ├── CommandHelper.vue │ │ ├── CommercialTimer.vue │ │ ├── CommunityBoostInfo.vue │ │ ├── DevmodeMenu.vue │ │ ├── EmoteSelector.vue │ │ ├── EndingCreditsControls.vue │ │ ├── Extensions.vue │ │ ├── Gngngn.vue │ │ ├── GroqChannelAction.vue │ │ ├── GroqHistory.vue │ │ ├── GroqHistoryItem.vue │ │ ├── HelpGenocideVictims.vue │ │ ├── LiveFollowings.vue │ │ ├── MessageExportIndicator.vue │ │ ├── MessageSearch.vue │ │ ├── ModeratorActionSwitcher.vue │ │ ├── NonPremiumCleanup.vue │ │ ├── OutdatedDataVersionAlert.vue │ │ ├── PinedMessages.vue │ │ ├── QnaForm.vue │ │ ├── QnaList.vue │ │ ├── RewardListEditForm.vue │ │ ├── RewardListItem.vue │ │ ├── RewardListTransferForm.vue │ │ ├── RewardsList.vue │ │ ├── ShoutoutList.vue │ │ ├── StreamSummary.vue │ │ ├── TTUserList.vue │ │ ├── TextSplitter.vue │ │ ├── TimerCountDownInfo.vue │ │ ├── TwitchatAnnouncement.vue │ │ └── UserList.vue │ ├── goxlr │ │ └── GoXLRUI.vue │ ├── heatlogs │ │ └── HeatLogs.vue │ ├── login │ │ └── ScopeSelector.vue │ ├── messages │ │ ├── AbstractChatMessage.ts │ │ ├── ChatAd.vue │ │ ├── ChatAdBreakStarted.vue │ │ ├── ChatAutobanJoin.vue │ │ ├── ChatAutomodTermsUpdate.vue │ │ ├── ChatBan.vue │ │ ├── ChatBingoResult.vue │ │ ├── ChatBits.vue │ │ ├── ChatCelebration.vue │ │ ├── ChatChatPollResult.vue │ │ ├── ChatClear.vue │ │ ├── ChatCommunityBoost.vue │ │ ├── ChatCommunityChallengeContribution.vue │ │ ├── ChatConnect.vue │ │ ├── ChatCountdownResult.vue │ │ ├── ChatCustomMessage.vue │ │ ├── ChatCustomTrainSummary.vue │ │ ├── ChatFollow.vue │ │ ├── ChatFollowbotEvents.vue │ │ ├── ChatGiantEmote.vue │ │ ├── ChatHateRaid.vue │ │ ├── ChatHistorySplitter.vue │ │ ├── ChatHypeChatMessage.vue │ │ ├── ChatHypeTrainCooldown.vue │ │ ├── ChatHypeTrainResult.vue │ │ ├── ChatJoinLeave.vue │ │ ├── ChatKofiEvent.vue │ │ ├── ChatLowTrustTreatment.vue │ │ ├── ChatMessage.vue │ │ ├── ChatMessageClipPending.vue │ │ ├── ChatNotice.vue │ │ ├── ChatPatreonEvent.vue │ │ ├── ChatPinNotice.vue │ │ ├── ChatPollResult.vue │ │ ├── ChatPredictionResult.vue │ │ ├── ChatPrivateModerator.vue │ │ ├── ChatRaffleResult.vue │ │ ├── ChatRaid.vue │ │ ├── ChatReward.vue │ │ ├── ChatRoomSettings.vue │ │ ├── ChatScopeRequester.vue │ │ ├── ChatShoutout.vue │ │ ├── ChatStreamOnOff.vue │ │ ├── ChatStreamSocketAction.vue │ │ ├── ChatStreamelementsEvent.vue │ │ ├── ChatStreamlabsEvent.vue │ │ ├── ChatSubscription.vue │ │ ├── ChatSuspendedTriggerStack.vue │ │ ├── ChatTikTokGift.vue │ │ ├── ChatTikTokLike.vue │ │ ├── ChatTikTokShare.vue │ │ ├── ChatTikTokSub.vue │ │ ├── ChatTiltifyEvent.vue │ │ ├── ChatTimerResult.vue │ │ ├── ChatTipAndTrickAd.vue │ │ ├── ChatTipeeeEvent.vue │ │ ├── ChatTrackAddedToQueue.vue │ │ ├── ChatTrackStart.vue │ │ ├── ChatTwitchCharityDonation.vue │ │ ├── ChatTwitchCombo.vue │ │ ├── ChatUnban.vue │ │ ├── ChatUnbanRequest.vue │ │ ├── ChatWarnAcknowledgment.vue │ │ ├── ChatWarnUser.vue │ │ ├── ChatWatchStreak.vue │ │ ├── ChatYoutubeSubgift.vue │ │ ├── ChatYoutubeSubscription.vue │ │ ├── ChatYoutubeSuperChat.vue │ │ ├── ChatYoutubeSuperSticker.vue │ │ ├── MessageItem.vue │ │ ├── MessageList.vue │ │ ├── MessageTranslation.vue │ │ └── components │ │ │ ├── ChatMessageChunksParser.vue │ │ │ ├── ChatMessageInfoBadges.vue │ │ │ ├── ChatModTools.vue │ │ │ ├── ContextMenuTimeoutDuration.vue │ │ │ └── MessageListFilter.vue │ ├── modals │ │ └── EmergencyFollowsListModal.vue │ ├── newusers │ │ └── GreetThem.vue │ ├── obs │ │ └── ObsHeatLogs.vue │ ├── overlays │ │ ├── AbstractOverlay.ts │ │ ├── OverlayAdBreak.vue │ │ ├── OverlayAnimatedText.vue │ │ ├── OverlayBingoGrid.vue │ │ ├── OverlayBitsWall.vue │ │ ├── OverlayChatHighlight.vue │ │ ├── OverlayChatPoll.vue │ │ ├── OverlayCounter.vue │ │ ├── OverlayCustomTrain.vue │ │ ├── OverlayDistort.vue │ │ ├── OverlayDonationGoals.vue │ │ ├── OverlayEndingCredits.vue │ │ ├── OverlayHeatDebug.vue │ │ ├── OverlayMusicPlayer.vue │ │ ├── OverlayPoll.vue │ │ ├── OverlayPredictions.vue │ │ ├── OverlayTimer.vue │ │ ├── OverlayUlule.vue │ │ ├── OverlaysRaffleWheel.vue │ │ ├── custom_train │ │ │ └── OverlayCustomTrainRenderer.vue │ │ ├── distortions │ │ │ ├── AbstractDistortion.ts │ │ │ ├── DistortShrink.vue │ │ │ ├── DistortionExpand.vue │ │ │ ├── DistortionHeart.vue │ │ │ └── DistortionLiquid.vue │ │ ├── donation_goals │ │ │ ├── OverlayDonationGoalAlert.vue │ │ │ └── OverlayDonationGoalItem.vue │ │ └── poll │ │ │ └── PollRenderer.vue │ ├── params │ │ ├── AutoCompleteForm.vue │ │ ├── ParamItem.vue │ │ ├── Parameters.vue │ │ ├── PlaceholderSelector.vue │ │ ├── PostOnChatParam.vue │ │ └── contents │ │ │ ├── IParameterContent.ts │ │ │ ├── ParamsAbout.vue │ │ │ ├── ParamsAccount.vue │ │ │ ├── ParamsAlert.vue │ │ │ ├── ParamsAutomod.vue │ │ │ ├── ParamsConnections.vue │ │ │ ├── ParamsCounters.vue │ │ │ ├── ParamsDonate.vue │ │ │ ├── ParamsDonorList.vue │ │ │ ├── ParamsEmergency.vue │ │ │ ├── ParamsList.vue │ │ │ ├── ParamsOverlays.vue │ │ │ ├── ParamsPremium.vue │ │ │ ├── ParamsSpoiler.vue │ │ │ ├── ParamsSponsor.vue │ │ │ ├── ParamsTTS.vue │ │ │ ├── ParamsTimer.vue │ │ │ ├── ParamsTriggers.vue │ │ │ ├── ParamsTwitchatAd.vue │ │ │ ├── ParamsValues.vue │ │ │ ├── ParamsVoiceBot.vue │ │ │ ├── account │ │ │ └── ParamsAccountPatreon.vue │ │ │ ├── connexions │ │ │ ├── ConnectDiscord.vue │ │ │ ├── ConnectElevenLabs.vue │ │ │ ├── ConnectGoXLR.vue │ │ │ ├── ConnectGroq.vue │ │ │ ├── ConnectHeat.vue │ │ │ ├── ConnectKofi.vue │ │ │ ├── ConnectLumia.vue │ │ │ ├── ConnectMixitup.vue │ │ │ ├── ConnectOBS.vue │ │ │ ├── ConnectPatreon.vue │ │ │ ├── ConnectPlayability.vue │ │ │ ├── ConnectSammi.vue │ │ │ ├── ConnectSpotify.vue │ │ │ ├── ConnectStreamSocket.vue │ │ │ ├── ConnectStreamdeck.vue │ │ │ ├── ConnectStreamelements.vue │ │ │ ├── ConnectStreamerBot.vue │ │ │ ├── ConnectStreamlabs.vue │ │ │ ├── ConnectTiktok.vue │ │ │ ├── ConnectTiltify.vue │ │ │ ├── ConnectTipeee.vue │ │ │ ├── ConnectTwitchBot.vue │ │ │ ├── ConnectVoicemod.vue │ │ │ ├── ConnectWebsocket.vue │ │ │ └── ConnectYoutube.vue │ │ │ ├── discord │ │ │ └── ParamsDiscordQuickActions.vue │ │ │ ├── donate │ │ │ └── SearchUserForm.vue │ │ │ ├── goxlr │ │ │ └── GoXLRConnectForm.vue │ │ │ ├── heat │ │ │ ├── HeatDebug.vue │ │ │ ├── HeatOverlayClick.vue │ │ │ ├── HeatScreenList.vue │ │ │ └── areas │ │ │ │ ├── HeatScreenEditor.vue │ │ │ │ └── HeatScreenPreview.vue │ │ │ ├── obs │ │ │ ├── OBSAudioSourceForm.vue │ │ │ ├── OBSBrowserSources.vue │ │ │ ├── OBSConnectForm.vue │ │ │ ├── OBSSceneItemSelector.vue │ │ │ └── OBSScenes.vue │ │ │ ├── overlays │ │ │ ├── OverlayInstaller.vue │ │ │ ├── OverlayParamsAdBreak.vue │ │ │ ├── OverlayParamsAnimatedText.vue │ │ │ ├── OverlayParamsBingoGrid.vue │ │ │ ├── OverlayParamsBitswall.vue │ │ │ ├── OverlayParamsChatPoll.vue │ │ │ ├── OverlayParamsCounter.vue │ │ │ ├── OverlayParamsCredits.vue │ │ │ ├── OverlayParamsCustomTrain.vue │ │ │ ├── OverlayParamsDonationGoal.vue │ │ │ ├── OverlayParamsHeatDistort.vue │ │ │ ├── OverlayParamsHighlight.vue │ │ │ ├── OverlayParamsLabels.vue │ │ │ ├── OverlayParamsMusic.vue │ │ │ ├── OverlayParamsPolls.vue │ │ │ ├── OverlayParamsPredictions.vue │ │ │ ├── OverlayParamsRaffle.vue │ │ │ ├── OverlayParamsSpotify.vue │ │ │ ├── OverlayParamsTTS.vue │ │ │ ├── OverlayParamsTimer.vue │ │ │ ├── OverlayParamsUlule.vue │ │ │ └── heat │ │ │ │ └── HeatDistortParams.vue │ │ │ └── triggers │ │ │ ├── SimpleTriggerList.vue │ │ │ ├── TriggerActionAnyMessageParams.vue │ │ │ ├── TriggerActionChatCommandParams.vue │ │ │ ├── TriggerActionCommandArgumentParams.vue │ │ │ ├── TriggerActionEntry.vue │ │ │ ├── TriggerActionHeatParams.vue │ │ │ ├── TriggerActionList.vue │ │ │ ├── TriggerActionScheduleParams.vue │ │ │ ├── TriggerActionSlashCommandParams.vue │ │ │ ├── TriggerAdApproachParams.vue │ │ │ ├── TriggerConditionList.vue │ │ │ ├── TriggerConditionListGroupItem.vue │ │ │ ├── TriggerConditionListItem.vue │ │ │ ├── TriggerCreateForm.vue │ │ │ ├── TriggerGoXLRParams.vue │ │ │ ├── TriggerList.vue │ │ │ ├── TriggerListFolderItem.vue │ │ │ ├── TriggerListItem.vue │ │ │ └── entries │ │ │ ├── AbstractTriggerActionEntry.ts │ │ │ ├── TriggerActionAnimateTextEntry.vue │ │ │ ├── TriggerActionBingoGridEntry.vue │ │ │ ├── TriggerActionChatEntry.vue │ │ │ ├── TriggerActionClickHeatEntry.vue │ │ │ ├── TriggerActionCountEntry.vue │ │ │ ├── TriggerActionCustomBadge.vue │ │ │ ├── TriggerActionCustomChatEntry.vue │ │ │ ├── TriggerActionCustomTrainEntry.vue │ │ │ ├── TriggerActionCustomUsername.vue │ │ │ ├── TriggerActionDelayEntry.vue │ │ │ ├── TriggerActionDeleteMessageEntry.vue │ │ │ ├── TriggerActionDiscordEntry.vue │ │ │ ├── TriggerActionExtensionEntry.vue │ │ │ ├── TriggerActionGoXLREntry.vue │ │ │ ├── TriggerActionGroqEntry.vue │ │ │ ├── TriggerActionHTTPCall.vue │ │ │ ├── TriggerActionHighlightEntry.vue │ │ │ ├── TriggerActionLumiaEntry.vue │ │ │ ├── TriggerActionMixitupEntry.vue │ │ │ ├── TriggerActionMusicEntry.vue │ │ │ ├── TriggerActionOBSEntry.vue │ │ │ ├── TriggerActionPlayAbilityEntry.vue │ │ │ ├── TriggerActionRandomEntry.vue │ │ │ ├── TriggerActionRewardEntry.vue │ │ │ ├── TriggerActionSammiEntry.vue │ │ │ ├── TriggerActionSpoilMessageEntry.vue │ │ │ ├── TriggerActionStopExecEntry.vue │ │ │ ├── TriggerActionStreamInfoEntry.vue │ │ │ ├── TriggerActionStreamerbotEntry.vue │ │ │ ├── TriggerActionTTSEntry.vue │ │ │ ├── TriggerActionTimerEntry.vue │ │ │ ├── TriggerActionTriggerEntry.vue │ │ │ ├── TriggerActionTriggerToggleEntry.vue │ │ │ ├── TriggerActionValueEntry.vue │ │ │ ├── TriggerActionVibratePhoneEntry.vue │ │ │ ├── TriggerActionVoicemodEntry.vue │ │ │ ├── TriggerActionWSEntry.vue │ │ │ └── common │ │ │ └── TriggerActionHttpPlaceholder.vue │ ├── poll │ │ ├── ChatPollForm.vue │ │ └── PollForm.vue │ ├── prediction │ │ └── PredictionForm.vue │ ├── premium │ │ └── SponsorTable.vue │ ├── raffle │ │ └── RaffleForm.vue │ ├── streaminfo │ │ ├── StreamInfoForm.vue │ │ └── StreamInfoSubForm.vue │ ├── timer │ │ └── TimerForm.vue │ ├── tracked │ │ └── TrackedUsers.vue │ ├── triggerslogs │ │ └── TriggersLogs.vue │ ├── user │ │ ├── CustomBadgeSelector.vue │ │ ├── CustomBadgesManager.vue │ │ ├── CustomUserBadges.vue │ │ ├── CustomUserNameManager.vue │ │ ├── DonorBadge.vue │ │ ├── DonorPublicState.vue │ │ ├── DonorState.vue │ │ └── UserCard.vue │ ├── voice │ │ ├── FormVoiceControllHelper.ts │ │ ├── TTSVoiceParams.vue │ │ ├── VoiceControlForm.vue │ │ ├── VoiceGlobalCommands.vue │ │ ├── VoiceGlobalCommandsHelper.vue │ │ ├── VoiceTranscript.vue │ │ └── VoiceTriggerList.vue │ └── whispers │ │ └── WhispersState.vue ├── dom-to-image-more.d.ts ├── events │ ├── EventBus.ts │ ├── EventDispatcher.ts │ ├── GlobalEvent.ts │ ├── GoXLRSocketEvent.ts │ ├── HeatEvent.ts │ ├── SSEEvent.ts │ └── TwitchatEvent.ts ├── less │ ├── _includes.less │ ├── _mixins.less │ ├── blinkHighlight.less │ ├── blured-background-window.less │ ├── card.less │ ├── chatMessage.less │ ├── cssStructure.less │ ├── fonts.less │ ├── form.less │ ├── gameState.less │ ├── index.less │ ├── modal.less │ ├── overlayParamsSection.less │ ├── parameterContent.less │ ├── reset.less │ ├── sidePanel.less │ └── triggerAction.less ├── main.ts ├── messaging │ ├── MessengerClientEvent.ts │ ├── MessengerProxy.ts │ └── TwitchMessengerClient.ts ├── overlay.ts ├── overlayLabel.ts ├── public.ts ├── router │ ├── index.ts │ ├── overlay.ts │ └── public.ts ├── shims-vue.d.ts ├── store │ ├── DataStore.ts │ ├── DataStoreCommon.ts │ ├── Database.ts │ ├── StoreProxy.ts │ ├── accessibility │ │ └── storeAccessibility.ts │ ├── account │ │ └── storeAccount.ts │ ├── admin │ │ └── storeAdmin.ts │ ├── animated_text │ │ └── storeAnimatedText.ts │ ├── auth │ │ └── storeAuth.ts │ ├── automod │ │ └── storeAutomod.ts │ ├── bingo │ │ └── storeBingo.ts │ ├── bingo_grid │ │ └── storeBingoGrid.ts │ ├── chat │ │ └── storeChat.ts │ ├── chat_poll │ │ └── storeChatPoll.ts │ ├── chat_sugg │ │ └── storeChatSuggestion.ts │ ├── common │ │ └── storeCommon.ts │ ├── counters │ │ └── storeCounters.ts │ ├── customtrain │ │ └── storeCustomTrain.ts │ ├── debug │ │ └── storeDebug.ts │ ├── discord │ │ └── storeDiscord.ts │ ├── donation_goals │ │ └── storeDonationGoals.ts │ ├── elevenlabs │ │ └── storeElevenLabs.ts │ ├── emergency │ │ └── storeEmergency.ts │ ├── extension │ │ └── storeExtension.ts │ ├── groq │ │ └── storeGroq.ts │ ├── heat │ │ └── storeHeat.ts │ ├── kofi │ │ └── storeKofi.ts │ ├── labels │ │ └── storeLabels.ts │ ├── lumia │ │ └── storeLumia.ts │ ├── mixitup │ │ └── storeMixitup.ts │ ├── music │ │ └── storeMusic.ts │ ├── obs │ │ └── storeOBS.ts │ ├── params │ │ └── storeParams.ts │ ├── patreon │ │ └── storePatreon.ts │ ├── playability │ │ └── storePlayability.ts │ ├── poll │ │ └── storePoll.ts │ ├── prediction │ │ └── storePrediction.ts │ ├── qna │ │ └── storeQna.ts │ ├── raffle │ │ └── storeRaffle.ts │ ├── rewards │ │ └── storeRewards.ts │ ├── sammi │ │ └── storeSammi.ts │ ├── storeMain.ts │ ├── storePublic.ts │ ├── stream │ │ └── storeStream.ts │ ├── streamelements │ │ └── storeStreamelements.ts │ ├── streamerbot │ │ └── storeStreamerbot.ts │ ├── streamlabs │ │ └── storeStreamlabs.ts │ ├── streamsocket │ │ └── storeStreamSocket.ts │ ├── tiktok │ │ └── storeTiktok.ts │ ├── tiltify │ │ └── storeTiltify.ts │ ├── timer │ │ └── storeTimer.ts │ ├── tipeee │ │ └── storeTipeee.ts │ ├── triggers │ │ └── storeTriggers.ts │ ├── tts │ │ └── storeTTS.ts │ ├── twitch_charity │ │ └── storeTwitchCharity.ts │ ├── twitchbot │ │ └── storeTwitchBot.ts │ ├── users │ │ └── storeUsers.ts │ ├── values │ │ └── storeValues.ts │ ├── voice │ │ └── storeVoice.ts │ └── youtube │ │ └── storeYoutube.ts ├── types │ ├── GoXLRTypes.ts │ ├── HeatDataTypes.ts │ ├── ILabelOverlayData.ts │ ├── TenorDataTypes.ts │ ├── TriggerActionDataTypes.ts │ ├── TwitchatDataTypes.ts │ ├── UluleTypes.ts │ ├── spotify │ │ └── SpotifyDataTypes.ts │ ├── twitch │ │ ├── TwitchDataTypes.ts │ │ └── TwitchEventSubDataTypes.ts │ └── youtube │ │ └── YoutubeDataTypes.ts ├── utils │ ├── ApiHelper.ts │ ├── ChatCypherPlugin.ts │ ├── Config.ts │ ├── ContextMenuHelper.ts │ ├── LandeWorker.ts │ ├── Logger.ts │ ├── OBSWebsocket.ts │ ├── OverlayVendorAPI.ts │ ├── PublicAPI.ts │ ├── SSEHelper.ts │ ├── SchedulerHelper.ts │ ├── SeTimeoutWorker.ts │ ├── SetIntervalWorker.ts │ ├── StreamdeckSocket.ts │ ├── TTSUtils.ts │ ├── TriggerUtils.ts │ ├── UnicodeUtils.ts │ ├── Utils.ts │ ├── WebsocketTrigger.ts │ ├── emotes │ │ ├── BTTVUtils.ts │ │ ├── FFZUtils.ts │ │ └── SevenTVUtils.ts │ ├── goxlr │ │ └── GoXLRSocket.ts │ ├── music │ │ └── SpotifyHelper.ts │ ├── patreon │ │ └── PatreonDataTypes.ts │ ├── triggers │ │ └── TriggerActionHandler.ts │ ├── twitch │ │ ├── EventSub.ts │ │ ├── HeatSocket.ts │ │ ├── TwitchScopes.ts │ │ ├── TwitchUtils.ts │ │ └── staticEmoteList.json │ ├── voice │ │ ├── VoiceAction.ts │ │ ├── VoiceController.ts │ │ ├── VoicemodEvent.ts │ │ ├── VoicemodTypes.ts │ │ └── VoicemodWebSocket.ts │ └── youtube │ │ ├── YoutubeHelper.ts │ │ ├── YoutubeScopes.ts │ │ └── sticker_list.json ├── views │ ├── Accessibility.vue │ ├── AlertView.vue │ ├── BingoGridView.vue │ ├── Chat.vue │ ├── ChatLight.vue │ ├── ComponentList.vue │ ├── Confirm.vue │ ├── GoXLRDebug.vue │ ├── HeatDebugPopout.vue │ ├── Home.vue │ ├── LabelsEditor.vue │ ├── LightAuthView.vue │ ├── Login.vue │ ├── Logout.vue │ ├── Overlay.vue │ ├── PrivacyPolicy.vue │ ├── PublicApiTest.vue │ ├── RemoteVoiceControl.vue │ ├── ShareParams.vue │ ├── Sponsor.vue │ └── TermsOfUse.vue ├── vue-flag.d.ts └── vuex.d.ts ├── src_labels └── index.mjs ├── src_lande └── lande_worker.ts ├── src_youtube ├── emote_list.json ├── emote_scrapper.js └── secret_emotes.json ├── static ├── beta.png ├── dev.png ├── discord │ └── command_permissions.gif ├── displacement │ ├── bubble.png │ ├── bubble2.png │ ├── expand.psd │ ├── grid.png │ ├── heart.png │ ├── heart.psd │ ├── index.html │ ├── ripples.png │ ├── shadows.ai │ ├── twirl.png │ └── twirl.psd ├── favicon.png ├── interval_worker.js ├── labels.json ├── lande_worker.js ├── loader.svg ├── logo.ai ├── logo.png ├── logo.svg ├── logo_christmas.png ├── logo_halloween.gif ├── manifest.json ├── service-worker.js ├── share.png ├── share.svg ├── share_small.png ├── timeout_worker.js ├── update_images │ ├── chat_poll.mp4 │ ├── custom_train.mp4 │ ├── groq.gif │ ├── solong.png │ ├── stream_deck.png │ ├── streamsocket.png │ ├── text_anim.mp4 │ └── timers.png └── youtube │ ├── emote_list.json │ └── emotes │ ├── hd │ ├── baseballwhitecapout.png │ ├── bodyblueraisedarms.png │ ├── bodygreencoveringeyes.png │ ├── bodyturquoiseyogapose.png │ ├── buffering.png │ ├── cardredpenalty.png │ ├── catorangewhistling.png │ ├── chillwcat.png │ ├── chillwdog.png │ ├── clockturquoiselookingup.png │ ├── dothefive.png │ ├── elbowbump.png │ ├── elbowcough.png │ ├── eyespinkheartshape.png │ ├── eyespurplecrying.png │ ├── facebluecoveringeyes.png │ ├── facebluedroopyeyes.png │ ├── facebluehearteyes.png │ ├── facebluequestionmark.png │ ├── facebluesmiling.png │ ├── facebluespamshape.png │ ├── facebluestareyes.png │ ├── facebluethreeeyes.png │ ├── facebluewideeyes.png │ ├── facefuchsiaflowershape.png │ ├── facefuchsiapoopshape.png │ ├── facefuchsiatongueout.png │ ├── facefuchsiawideeyes.png │ ├── facegreensmiling.png │ ├── faceorangebitingnails.png │ ├── faceorangefrowning.png │ ├── faceorangeraisedeyebrow.png │ ├── faceorangetvshape.png │ ├── facepinkdrinkingtea.png │ ├── facepinktears.png │ ├── facepurplecrying.png │ ├── facepurpleopenbox.png │ ├── facepurpleraindrops.png │ ├── facepurplesmilingfangs.png │ ├── facepurplesmilingtears.png │ ├── facepurplesweating.png │ ├── facepurplewideeyes.png │ ├── facereddroopyeyes.png │ ├── faceredheartshape.png │ ├── faceredsmilinglive.png │ ├── faceturquoisecoveringeyes.png │ ├── faceturquoisedrinkingcoffee.png │ ├── faceturquoisemusicnote.png │ ├── faceturquoisespeakershape.png │ ├── fingerrednumberone.png │ ├── fishorangewideeyes.png │ ├── gar.png │ ├── glassespurpleyellowdiamond.png │ ├── goatturquoisewhitehorns.png │ ├── goodvibes.png │ ├── handgreencrystalball.png │ ├── handorangecoveringeyes.png │ ├── handpinkwaving.png │ ├── handpurplebluepeace.png │ ├── handsyellowheartred.png │ ├── hourglasspurplesandorange.png │ ├── hydrate.png │ ├── learning.png │ ├── locationyellowtealbars.png │ ├── medalyellowfirstred.png │ ├── octopusredwaving.png │ ├── oops.png │ ├── penguinbluewavingtear.png │ ├── personblueeatingspaghetti.png │ ├── personblueholdingpencil.png │ ├── personbluespeakingmicrophone.png │ ├── personbluewheelchairrace.png │ ├── personpinkswayinghair.png │ ├── personpurplestageevent.png │ ├── personturqouisewaving.png │ ├── personturquoisecrowdsurf.png │ ├── personturquoisewavingspeech.png │ ├── personturquoisewizardwand.png │ ├── personturquoisewritingheadphones.png │ ├── personyellowpodiumblue.png │ ├── pillowturquoisehotchocolate.png │ ├── planetorangepurplering.png │ ├── popcornyellowstripedsmile.png │ ├── rocketredcountdownliftoff.png │ ├── sanitizer.png │ ├── shelterin.png │ ├── socialdist.png │ ├── stayhome.png │ ├── stopwatchbluehandtimer.png │ ├── takeout.png │ ├── textgreengameover.png │ ├── textyellowgoal.png │ ├── thanksdoc.png │ ├── trophyyellowsmiling.png │ ├── videocall.png │ ├── virtualhug.png │ ├── volcanogreenlavaorange.png │ ├── washhands.png │ ├── whistleredblow.png │ ├── yougotthis.png │ ├── yt.png │ └── ytg.png │ └── sd │ ├── baseballwhitecapout.png │ ├── bodyblueraisedarms.png │ ├── bodygreencoveringeyes.png │ ├── bodyturquoiseyogapose.png │ ├── buffering.png │ ├── cardredpenalty.png │ ├── catorangewhistling.png │ ├── chillwcat.png │ ├── chillwdog.png │ ├── clockturquoiselookingup.png │ ├── dothefive.png │ ├── elbowbump.png │ ├── elbowcough.png │ ├── eyespinkheartshape.png │ ├── eyespurplecrying.png │ ├── facebluecoveringeyes.png │ ├── facebluedroopyeyes.png │ ├── facebluehearteyes.png │ ├── facebluequestionmark.png │ ├── facebluesmiling.png │ ├── facebluespamshape.png │ ├── facebluestareyes.png │ ├── facebluethreeeyes.png │ ├── facebluewideeyes.png │ ├── facefuchsiaflowershape.png │ ├── facefuchsiapoopshape.png │ ├── facefuchsiatongueout.png │ ├── facefuchsiawideeyes.png │ ├── facegreensmiling.png │ ├── faceorangebitingnails.png │ ├── faceorangefrowning.png │ ├── faceorangeraisedeyebrow.png │ ├── faceorangetvshape.png │ ├── facepinkdrinkingtea.png │ ├── facepinktears.png │ ├── facepurplecrying.png │ ├── facepurpleopenbox.png │ ├── facepurpleraindrops.png │ ├── facepurplesmilingfangs.png │ ├── facepurplesmilingtears.png │ ├── facepurplesweating.png │ ├── facepurplewideeyes.png │ ├── facereddroopyeyes.png │ ├── faceredheartshape.png │ ├── faceredsmilinglive.png │ ├── faceturquoisecoveringeyes.png │ ├── faceturquoisedrinkingcoffee.png │ ├── faceturquoisemusicnote.png │ ├── faceturquoisespeakershape.png │ ├── fingerrednumberone.png │ ├── fishorangewideeyes.png │ ├── gar.png │ ├── glassespurpleyellowdiamond.png │ ├── goatturquoisewhitehorns.png │ ├── goodvibes.png │ ├── handgreencrystalball.png │ ├── handorangecoveringeyes.png │ ├── handpinkwaving.png │ ├── handpurplebluepeace.png │ ├── handsyellowheartred.png │ ├── hourglasspurplesandorange.png │ ├── hydrate.png │ ├── learning.png │ ├── locationyellowtealbars.png │ ├── medalyellowfirstred.png │ ├── octopusredwaving.png │ ├── oops.png │ ├── penguinbluewavingtear.png │ ├── personblueeatingspaghetti.png │ ├── personblueholdingpencil.png │ ├── personbluespeakingmicrophone.png │ ├── personbluewheelchairrace.png │ ├── personpinkswayinghair.png │ ├── personpurplestageevent.png │ ├── personturqouisewaving.png │ ├── personturquoisecrowdsurf.png │ ├── personturquoisewavingspeech.png │ ├── personturquoisewizardwand.png │ ├── personturquoisewritingheadphones.png │ ├── personyellowpodiumblue.png │ ├── pillowturquoisehotchocolate.png │ ├── planetorangepurplering.png │ ├── popcornyellowstripedsmile.png │ ├── rocketredcountdownliftoff.png │ ├── sanitizer.png │ ├── shelterin.png │ ├── socialdist.png │ ├── stayhome.png │ ├── stopwatchbluehandtimer.png │ ├── takeout.png │ ├── textgreengameover.png │ ├── textyellowgoal.png │ ├── thanksdoc.png │ ├── trophyyellowsmiling.png │ ├── videocall.png │ ├── virtualhug.png │ ├── volcanogreenlavaorange.png │ ├── washhands.png │ ├── whistleredblow.png │ ├── yougotthis.png │ ├── yt.png │ └── ytg.png ├── streamdeck_plugin ├── fr.twitchat.sdPlugin │ ├── assets │ │ ├── caret.svg │ │ ├── caret_closed.svg │ │ ├── check.png │ │ ├── check.svg │ │ ├── elg_calendar.svg │ │ ├── elg_calendar_inv.svg │ │ ├── rcheck.svg │ │ └── tick.svg │ ├── chat-feed-select-layout.json │ ├── css │ │ └── sdpi.css │ ├── fr.twitchat.streamDeckPlugin │ ├── icons │ │ ├── ACTIVITY_FEED_TOGGLE.png │ │ ├── ACTIVITY_FEED_TOGGLE@2x.png │ │ ├── ACTIVITY_FEED_TOGGLE_default.png │ │ ├── ACTIVITY_FEED_TOGGLE_default@2x.png │ │ ├── AUTOMOD_ACCEPT.png │ │ ├── AUTOMOD_ACCEPT@2x.png │ │ ├── AUTOMOD_ACCEPT_default.png │ │ ├── AUTOMOD_ACCEPT_default@2x.png │ │ ├── AUTOMOD_REJECT.png │ │ ├── AUTOMOD_REJECT@2x.png │ │ ├── AUTOMOD_REJECT_default.png │ │ ├── AUTOMOD_REJECT_default@2x.png │ │ ├── BINGO_TOGGLE.png │ │ ├── BINGO_TOGGLE@2x.png │ │ ├── BINGO_TOGGLE_default.png │ │ ├── BINGO_TOGGLE_default@2x.png │ │ ├── CENSOR_DELETED_MESSAGES_TOGGLE.png │ │ ├── CENSOR_DELETED_MESSAGES_TOGGLE@2x.png │ │ ├── CENSOR_DELETED_MESSAGES_TOGGLE_default.png │ │ ├── CENSOR_DELETED_MESSAGES_TOGGLE_default@2x.png │ │ ├── CHAT_FEED_PAUSE.png │ │ ├── CHAT_FEED_PAUSE@2x.png │ │ ├── CHAT_FEED_PAUSE_default.png │ │ ├── CHAT_FEED_PAUSE_default@2x.png │ │ ├── CHAT_FEED_READ.png │ │ ├── CHAT_FEED_READ@2x.png │ │ ├── CHAT_FEED_READ_ALL.png │ │ ├── CHAT_FEED_READ_ALL@2x.png │ │ ├── CHAT_FEED_READ_ALL_default.png │ │ ├── CHAT_FEED_READ_ALL_default@2x.png │ │ ├── CHAT_FEED_READ_default.png │ │ ├── CHAT_FEED_READ_default@2x.png │ │ ├── CHAT_FEED_SCROLL_DOWN.png │ │ ├── CHAT_FEED_SCROLL_DOWN@2x.png │ │ ├── CHAT_FEED_SCROLL_DOWN_default.png │ │ ├── CHAT_FEED_SCROLL_DOWN_default@2x.png │ │ ├── CHAT_FEED_SCROLL_ENCODER.png │ │ ├── CHAT_FEED_SCROLL_ENCODER@2x.png │ │ ├── CHAT_FEED_SCROLL_ENCODER_default.png │ │ ├── CHAT_FEED_SCROLL_ENCODER_default@2x.png │ │ ├── CHAT_FEED_SCROLL_ENCODER_screen.png │ │ ├── CHAT_FEED_SCROLL_ENCODER_screen@2x.png │ │ ├── CHAT_FEED_SCROLL_UP.png │ │ ├── CHAT_FEED_SCROLL_UP@2x.png │ │ ├── CHAT_FEED_SCROLL_UP_default.png │ │ ├── CHAT_FEED_SCROLL_UP_default@2x.png │ │ ├── CHAT_FEED_UNPAUSE.png │ │ ├── CHAT_FEED_UNPAUSE@2x.png │ │ ├── CHAT_FEED_UNPAUSE_default.png │ │ ├── CHAT_FEED_UNPAUSE_default@2x.png │ │ ├── CLEAR_CHAT_HIGHLIGHT.png │ │ ├── CLEAR_CHAT_HIGHLIGHT@2x.png │ │ ├── CLEAR_CHAT_HIGHLIGHT_default.png │ │ ├── CLEAR_CHAT_HIGHLIGHT_default@2x.png │ │ ├── COUNT.png │ │ ├── COUNT@2x.png │ │ ├── COUNTDOWN.png │ │ ├── COUNTDOWN@2x.png │ │ ├── COUNTDOWN_default.png │ │ ├── COUNTDOWN_default@2x.png │ │ ├── COUNT_default.png │ │ ├── COUNT_default@2x.png │ │ ├── DISABLE_STT.png │ │ ├── DISABLE_STT@2x.png │ │ ├── DISABLE_STT_default.png │ │ ├── DISABLE_STT_default@2x.png │ │ ├── EMERGENCY.png │ │ ├── EMERGENCY@2x.png │ │ ├── EMERGENCY_default.png │ │ ├── EMERGENCY_default@2x.png │ │ ├── ENABLE_STT.png │ │ ├── ENABLE_STT@2x.png │ │ ├── ENABLE_STT_default.png │ │ ├── ENABLE_STT_default@2x.png │ │ ├── EXECUTE_TRIGGER.png │ │ ├── EXECUTE_TRIGGER@2x.png │ │ ├── EXECUTE_TRIGGER_default.png │ │ ├── EXECUTE_TRIGGER_default@2x.png │ │ ├── GREET_FEED_READ.png │ │ ├── GREET_FEED_READ@2x.png │ │ ├── GREET_FEED_READ_default.png │ │ ├── GREET_FEED_READ_default@2x.png │ │ ├── HIDE_ALERT.png │ │ ├── HIDE_ALERT@2x.png │ │ ├── HIDE_ALERT_default.png │ │ ├── HIDE_ALERT_default@2x.png │ │ ├── MERGE_TOGGLE.png │ │ ├── MERGE_TOGGLE@2x.png │ │ ├── MERGE_TOGGLE_default.png │ │ ├── MERGE_TOGGLE_default@2x.png │ │ ├── MOD_TOOLS_TOGGLE.png │ │ ├── MOD_TOOLS_TOGGLE@2x.png │ │ ├── MOD_TOOLS_TOGGLE_default.png │ │ ├── MOD_TOOLS_TOGGLE_default@2x.png │ │ ├── POLL_TOGGLE.png │ │ ├── POLL_TOGGLE@2x.png │ │ ├── POLL_TOGGLE_default.png │ │ ├── POLL_TOGGLE_default@2x.png │ │ ├── PREDICTION_TOGGLE.png │ │ ├── PREDICTION_TOGGLE@2x.png │ │ ├── PREDICTION_TOGGLE_default.png │ │ ├── PREDICTION_TOGGLE_default@2x.png │ │ ├── QNA_HIGHLIGHT.png │ │ ├── QNA_HIGHLIGHT@2x.png │ │ ├── QNA_HIGHLIGHT_default.png │ │ ├── QNA_HIGHLIGHT_default@2x.png │ │ ├── QNA_SKIP.png │ │ ├── QNA_SKIP@2x.png │ │ ├── QNA_SKIP_default.png │ │ ├── QNA_SKIP_default@2x.png │ │ ├── RAFFLE_PICK_WINNER.png │ │ ├── RAFFLE_PICK_WINNER@2x.png │ │ ├── RAFFLE_PICK_WINNER_default.png │ │ ├── RAFFLE_PICK_WINNER_default@2x.png │ │ ├── RAFFLE_TOGGLE.png │ │ ├── RAFFLE_TOGGLE@2x.png │ │ ├── RAFFLE_TOGGLE_default.png │ │ ├── RAFFLE_TOGGLE_default@2x.png │ │ ├── SEND_MESSAGE.png │ │ ├── SEND_MESSAGE@2x.png │ │ ├── SEND_MESSAGE_default.png │ │ ├── SEND_MESSAGE_default@2x.png │ │ ├── SHOUTOUT.png │ │ ├── SHOUTOUT@2x.png │ │ ├── SHOUTOUT_default.png │ │ ├── SHOUTOUT_default@2x.png │ │ ├── STOP_TTS.png │ │ ├── STOP_TTS@2x.png │ │ ├── STOP_TTS_default.png │ │ ├── STOP_TTS_default@2x.png │ │ ├── TARGET_MESSAGE.png │ │ ├── TARGET_MESSAGE@2x.png │ │ ├── TARGET_MESSAGE_default.png │ │ ├── TARGET_MESSAGE_default@2x.png │ │ ├── TIMER.png │ │ ├── TIMER@2x.png │ │ ├── TIMER_default.png │ │ ├── TIMER_default@2x.png │ │ ├── TOGGLE_TRIGGER.png │ │ ├── TOGGLE_TRIGGER@2x.png │ │ ├── TOGGLE_TRIGGER_default.png │ │ ├── TOGGLE_TRIGGER_default@2x.png │ │ ├── VIEWERS_COUNT_TOGGLE.png │ │ ├── VIEWERS_COUNT_TOGGLE@2x.png │ │ ├── VIEWERS_COUNT_TOGGLE_default.png │ │ ├── VIEWERS_COUNT_TOGGLE_default@2x.png │ │ ├── actionDefaultImage.png │ │ ├── actionDefaultImage@2x.png │ │ ├── actionIcon.png │ │ ├── actionIcon@2x.png │ │ ├── empty.png │ │ ├── pluginIcon.png │ │ └── pluginIcon@2x.png │ ├── index.html │ ├── js │ │ ├── action.js │ │ ├── api.js │ │ ├── constants.js │ │ ├── dynamic-styles.js │ │ ├── events.js │ │ ├── obs-websocket.js │ │ ├── property-inspector.js │ │ ├── prototypes.js │ │ ├── stream-deck.js │ │ ├── timers.js │ │ └── utils.js │ ├── manifest.json │ ├── previews │ │ ├── 1-preview.jpg │ │ └── 2-preview.jpg │ └── propertyInspector.html ├── fr.twitchat.streamDeckPlugin ├── gallery.ai └── icons.ai ├── tsconfig.json ├── tsconfig.vite-config.json ├── tsconfig_lande.json ├── tsconfig_server.json └── vite.config.ts /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | not ie 11 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | indent_size = 4 6 | tab_width = 4 7 | end_of_line = crlf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "root": true, 3 | "extends": [ 4 | "plugin:vue/vue3-essential", 5 | "eslint:recommended", 6 | "@vue/eslint-config-typescript/recommended" 7 | ], 8 | "env": { 9 | "vue/setup-compiler-macros": true 10 | }, 11 | "rules": { 12 | "@typescript-eslint/ban-ts-comment": "off", 13 | "@typescript-eslint/no-empty-function": "off", 14 | "@typescript-eslint/no-namespace": "off" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Durss] 2 | custom: ["https://paypal.me/durss"] 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /dist 5 | /server 6 | /server 7 | /userData_fake_production 8 | /updates_graphics 9 | /data 10 | env.conf 11 | tsconfig.tsbuildinfo 12 | 13 | credentials/* 14 | !credentials.default.json 15 | /announcements.json 16 | 17 | 18 | # local env files 19 | .env.local 20 | .env.*.local 21 | 22 | # Log files 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | pnpm-debug.log* 27 | 28 | # Editor directories and files 29 | .idea 30 | .vscode 31 | *.suo 32 | *.ntvs* 33 | *.njsproj 34 | *.sln 35 | *.sw? -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ], 5 | plugsins: [ 6 | ["@babel/plugin-proposal-decorators", { "legacy": true }], 7 | ["@babel/plugin-proposal-class-properties", { "loose": true }] 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /env.conf: -------------------------------------------------------------------------------- 1 | dev -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /gource.cmd: -------------------------------------------------------------------------------- 1 | : starts rendering a git visualization from the specified date 2 | gource --start-date "2023-06-29" --auto-skip-seconds 0.5 --background-image static/favicon.png --background 008667 -f --frameless --camera-mode track --font-colour 444444 --filename-colour 444444 --dir-colour 444444 --file-font-size 20 --dir-font-size 16 --time-scale 1.5 -------------------------------------------------------------------------------- /i18n/de/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "about": { 3 | "suggestion": "" 4 | } 5 | } -------------------------------------------------------------------------------- /i18n/de/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "global": { 3 | "lang": "de-DE", 4 | "lang_label": "Deutsch", 5 | "lang_flag": "de", 6 | "lang_enabled": false 7 | } 8 | } -------------------------------------------------------------------------------- /i18n/en/alert.json: -------------------------------------------------------------------------------- 1 | { 2 | "alert": { 3 | "header":"Let your mods alert you if something's urgent", 4 | "command_title":"Chat command", 5 | "actions":"Actions", 6 | "actions_triggers":"Do more actions with the {LINK}", 7 | "actions_triggers_link":"Triggers system", 8 | "command":"Command", 9 | "option_popin":"Show message on popin", 10 | "option_shake":"Shake interface", 11 | "option_blink":"Blink interface", 12 | "option_sound":"Play wizz sound", 13 | "option_vibrate":"Vibrate phone (mobile only)", 14 | "testBt":"Test" 15 | } 16 | } -------------------------------------------------------------------------------- /i18n/en/chat_poll.json: -------------------------------------------------------------------------------- 1 | { 2 | "chatPoll":{ 3 | "form":{ 4 | "title":"Create a chat poll", 5 | "header":"Viewers will be able to vote by sending the answer index on chat", 6 | "closeBt_aria":"Close poll form", 7 | "permissions":"Permissions", 8 | "question":"Question", 9 | "answers":"Answers (at least 2)", 10 | "voteDuration":"Vote duration (minutes)", 11 | "allowMultiVote":"Allow users to vote for {VALUE} answer max|Allow users to vote for {VALUE} answers max" 12 | }, 13 | "state":{ 14 | "endBt":"End poll" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /i18n/en/credits_control.json: -------------------------------------------------------------------------------- 1 | { 2 | "credits_control": { 3 | "force_startBt": "Restart", 4 | "pauseBt":"Pause", 5 | "stopBt":"Stop", 6 | "nextBt":"Next", 7 | "prevBt":"Prev", 8 | "speed":"Speed" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/en/donor.json: -------------------------------------------------------------------------------- 1 | { 2 | "donor":{ 3 | "level":"level", 4 | "anon":"Anonymous", 5 | "make_public":"Make my donation public" 6 | } 7 | } -------------------------------------------------------------------------------- /i18n/en/elevenlabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "elevenlabs": { 3 | "header":"Connect Twitchat with {LINK} and use it to read messages with realistic voices", 4 | "instructions":"You need to create an account on ElevenLabs and request an API Key", 5 | "install":"Create API Key", 6 | "invalid_api_key": "Invalid API key", 7 | "apiKey":"API Key", 8 | "credits_usage":"Remaining credits: {REMAINING}/{LIMIT}", 9 | "usage":"You can now use ElevenLabs to read messages on the {TTS} section or read anything you want from the {TRIGGERS} thanks to the ElevenLabs action." 10 | } 11 | } -------------------------------------------------------------------------------- /i18n/en/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions": { 3 | "title":"Manage Twitch extensions", 4 | "param_install":"Install", 5 | "no_extension":"You have no extension installed on your channel", 6 | "no_extension_browse":"Browse for extensions", 7 | "type_panel":"Panel", 8 | "type_overlay":"Overlay", 9 | "type_mobile":"Mobile", 10 | "type_component":"Component", 11 | "update_error":"Something went wrong when updating the extension" 12 | } 13 | } -------------------------------------------------------------------------------- /i18n/en/liveusers.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveusers": { 3 | "closeBt_aria": "Close live users list", 4 | "none": "None of the people you follow is streaming :(", 5 | "date": "{DURATION} ago", 6 | "raid_confirm_title": "Raid?", 7 | "raid_confirm_desc": "Are you sure you want to raid {USER}?", 8 | "scope_grant": "You have not granted permission for Twitchat to see who is live among the people you follow", 9 | "scope_grantBt": "Grant permission" 10 | } 11 | } -------------------------------------------------------------------------------- /i18n/en/logout.json: -------------------------------------------------------------------------------- 1 | { 2 | "logout":{ 3 | "title":"You are now logged out.", 4 | "are_you":"Or, are you...?", 5 | "details_head":"Other apps won't tell you but logging out is not enough.", 6 | "details_1":"Twitchat app still, theoretically, has access to your account.", 7 | "details_2":"You may want to also revoke access to the app from your Twitch account.", 8 | "settingBt":"Open settings", 9 | "details_3":"Scroll down to the Other Connections section, find TwichatApp entry and click Disconnect button." 10 | } 11 | } -------------------------------------------------------------------------------- /i18n/en/lumia.json: -------------------------------------------------------------------------------- 1 | { 2 | "lumia": { 3 | "header":"Control {LINK} from Twitchat", 4 | "param_token":"API token", 5 | "param_token_help":"You can find it under Settings => API", 6 | "info":"Once connected with Lumia you'll be able to control your lights from the {TRIGGERS}." 7 | } 8 | } -------------------------------------------------------------------------------- /i18n/en/mixitup.json: -------------------------------------------------------------------------------- 1 | { 2 | "mixitup":{ 3 | "header":"Connect Twitchat with {LINK} and control it from the Triggers", 4 | "instructions":"In Mix It Up, head over \"Services\" and enable \"Developer API\"", 5 | "install":"Install Mix It Up", 6 | "connect_error":"Unable to connect with Mix It Up.", 7 | "ip":"IP", 8 | "port":"Port" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/en/music.json: -------------------------------------------------------------------------------- 1 | { 2 | "music": { 3 | "spotify_play": "Spotify requires you to first play some music before trying to control it from Twitchat", 4 | "spotify_refused": "You refused to grant access to your Spotify account", 5 | "search_track": "search track...", 6 | "playBt": "Play", 7 | "add_queueBt": "Add to queue", 8 | "spotify_instructions":"https://github.com/durss/twitchat/blob/main/SPOTIFY.md" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/en/pin.json: -------------------------------------------------------------------------------- 1 | { 2 | "pin": { 3 | "title": "{COUNT} saved message | {COUNT} saved messages", 4 | "closeBt_aria": "Close list", 5 | "unpinBt_aria": "Unsave message", 6 | "highlightBt_tt": "Highlight on stream
(needs overlay)", 7 | "highlightBt_aria": "Highlight message" 8 | } 9 | } -------------------------------------------------------------------------------- /i18n/en/poll.json: -------------------------------------------------------------------------------- 1 | { 2 | "poll":{ 3 | "form":{ 4 | "title":"Create poll", 5 | "created_by":"created by {USER}", 6 | "closeBt_aria":"Close poll form", 7 | "question":"Question", 8 | "answers":"Answers (at least 2)", 9 | "additional_votes":"Allow additional votes", 10 | "additional_votes_amount":"Points per vote", 11 | "vote_duration":"Vote duration (minutes)" 12 | }, 13 | "state":{ 14 | "endBt":"End poll" 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /i18n/en/sammi.json: -------------------------------------------------------------------------------- 1 | { 2 | "sammi":{ 3 | "header":"Connect Twitchat with {LINK} and control it from the Triggers", 4 | "instructions":"In SAMMI, go under \"Settings\" => \"Connections\" and make sure \"Open Local API Server\" is enabled", 5 | "install":"Install SAMMI", 6 | "connect_error":"Unable to connect with SAMMI.", 7 | "ip":"IP", 8 | "port":"Port", 9 | "pass":"Password (optionnel)" 10 | } 11 | } -------------------------------------------------------------------------------- /i18n/en/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "search":{ 3 | "title":"Search results {COUNT}", 4 | "subtitle":"Searching: \"{SEARCH}\"", 5 | "no_result":"No result for search \"{SEARCH}\"" 6 | } 7 | } -------------------------------------------------------------------------------- /i18n/en/spoiler.json: -------------------------------------------------------------------------------- 1 | { 2 | "spoiler":{ 3 | "header":"Messages starting with {TAG} will be masked by default and revealed on hover", 4 | "message_example":"Message example:", 5 | "autospoil_new_users":"Display all messages of 1st time chatters as spoilers
(useful if you play a spoiler-sensitive game)", 6 | "command":{ 7 | "title":"Spoil someone's message", 8 | "how_to":"You can allow your mods to flag a message sent by another viewer as a spoiler by answering the message with the {CMD} command", 9 | "allowed":"Users allowed to use {CMD} command:" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /i18n/en/streamelements.json: -------------------------------------------------------------------------------- 1 | { 2 | "streamelements": { 3 | "header":"Receive {LINK} alerts on Twitchat", 4 | "examples":"Message examples" 5 | } 6 | } -------------------------------------------------------------------------------- /i18n/en/streamerbot.json: -------------------------------------------------------------------------------- 1 | { 2 | "streamerbot": { 3 | "header":"Connect with {LINK} to trigger its actions from Twitchat's Triggers", 4 | "install":"Install Streamer.bot", 5 | "instructions":"In Streamer.bot, go under \"Servers/Clients\" => \"WebSocket server\", tick the \"Auto Start WebSockets server\" option and click \"Start server\"", 6 | "connect_error":"Connection to Streamber.bot failed.\nMake sure Streamer.bot is started and HTTP server enabled.", 7 | "ip":"IP", 8 | "port":"Port", 9 | "pass":"Password (optional)" 10 | } 11 | } -------------------------------------------------------------------------------- /i18n/en/tiktok.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiktok": { 3 | "header":"Receive {LINK} messages and alerts on Twitchat", 4 | "requirement":"You'll first need to install and configure {LINK}", 5 | "install":"Install TikFinity", 6 | "examples":"Message examples", 7 | "connect_error":"Unable to connect with TikFinity." 8 | } 9 | } -------------------------------------------------------------------------------- /i18n/en/tiltify.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiltify": { 3 | "header":"Receive {LINK} alerts on Twitchat", 4 | "examples":"Message examples", 5 | "create_donation_goals":"Create interactive donation goals with the dedicated overlay", 6 | "campaign_list":"Your Tiltify campaign | Your Tiltify campaigns", 7 | "no_campaign":"Your Tiltify profile is not associated with any fundraising campaign", 8 | "copy_id_tt":"Copy campaign ID" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/en/tipeee.json: -------------------------------------------------------------------------------- 1 | { 2 | "tipeee":{ 3 | "header":"Receive {LINK} alerts on Twitchat", 4 | "examples":"Message examples" 5 | } 6 | } -------------------------------------------------------------------------------- /i18n/en/tracked.json: -------------------------------------------------------------------------------- 1 | { 2 | "tracked": { 3 | "title": "Tracked users", 4 | "no_message": "no message" 5 | } 6 | } -------------------------------------------------------------------------------- /i18n/en/twitch_bot.json: -------------------------------------------------------------------------------- 1 | { 2 | "twitch_bot": { 3 | "header": "Connect a secondary Twitch account to send bot messages", 4 | "auth_refused": "You have refused access to your Twitch account", 5 | "auth_hint": "Click the link shown below to authenticate with your secondary account", 6 | "hints": "Add your bot as a VIP or a moderator to your channel to make sure it can send messages without being blocked.", 7 | "add_modBt": "Add to mods", 8 | "add_vipBt": "Add to VIPs" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /i18n/en/whispers.json: -------------------------------------------------------------------------------- 1 | { 2 | "whispers": { 3 | "title": "Whispers", 4 | "user_list":"User list", 5 | "cant_send_1": "Unable to send whisper.", 6 | "cant_send_2": "You must be affiliate and have enabled 2FA in order to send whispers from outside of Twitch.", 7 | "input_placeholder": "answer...", 8 | "add_scope_bt":"Authorize sending answers" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/fr/credits_control.json: -------------------------------------------------------------------------------- 1 | { 2 | "credits_control": { 3 | "force_startBt": "Relancer", 4 | "pauseBt":"Pause", 5 | "stopBt":"Stop", 6 | "nextBt":"Suivant", 7 | "prevBt":"Précédent", 8 | "speed":"Vitesse" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/fr/donor.json: -------------------------------------------------------------------------------- 1 | { 2 | "donor":{ 3 | "level":"niveau", 4 | "anon":"Anonyme", 5 | "make_public":"Rendre mon don public" 6 | } 7 | } -------------------------------------------------------------------------------- /i18n/fr/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions": { 3 | "title":"Gérer vos extensions Twitch", 4 | "param_install":"Installer", 5 | "no_extension":"Vous n'avez aucune extension installée sur votre chaîne.", 6 | "no_extension_browse":"Parcourir les extensions", 7 | "type_panel":"Panneau", 8 | "type_overlay":"Overlay", 9 | "type_mobile":"Mobile", 10 | "type_component":"Composant", 11 | "update_error":"Une erreur est survenue lors de la mise à jour de l'extension" 12 | } 13 | } -------------------------------------------------------------------------------- /i18n/fr/liveusers.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveusers": { 3 | "closeBt_aria": "Fermer la liste", 4 | "none": "Personne n'est actuellement en stream :(", 5 | "date": "Il y a {DURATION}", 6 | "raid_confirm_title": "Raid?", 7 | "raid_confirm_desc": "Souhaites-tu lancer un raid chez {USER} ?", 8 | "scope_grant": "Vous n'avez pas accordé la permission à Twitchat de voir qui est en live parmi les personnes que vous suivez.", 9 | "scope_grantBt": "Accorder la permission" 10 | } 11 | } -------------------------------------------------------------------------------- /i18n/fr/lumia.json: -------------------------------------------------------------------------------- 1 | { 2 | "lumia": { 3 | "header":"Controllez {LINK} depuis Twitchat", 4 | "param_token":"Jeton d'API", 5 | "param_token_help":"Vous le trouverez dans Paramètres => API", 6 | "info":"Une fois connecté à Lumia vous pourrez contrôler vos lumières depuis les {TRIGGERS}." 7 | } 8 | } -------------------------------------------------------------------------------- /i18n/fr/mixitup.json: -------------------------------------------------------------------------------- 1 | { 2 | "mixitup":{ 3 | "header":"Connectez Twitchat avec {LINK} et contrôlez-le depuis les Triggers", 4 | "instructions":"Dans Mix It Up, rendez-vous dans \"Services\" et activez \"Developer API\"", 5 | "install":"Installer Mix It Up", 6 | "connect_error":"Impossible de se connecter à Mix It Up.", 7 | "ip":"IP", 8 | "port":"Port" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/fr/music.json: -------------------------------------------------------------------------------- 1 | { 2 | "music": { 3 | "spotify_play": "Spotify oblige à d'abord jouer de la musique avant de le contrôler depuis Twitchat", 4 | "spotify_refused": "Vous avez refusé l'accès à votre compte Spotify", 5 | "search_track": "chercher... ", 6 | "playBt": "Jouer", 7 | "add_queueBt": "Ajouter à la file d'attente", 8 | "spotify_instructions":"https://github.com/durss/twitchat/blob/main/SPOTIFY_FR.md" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /i18n/fr/pin.json: -------------------------------------------------------------------------------- 1 | { 2 | "pin": { 3 | "title": "{COUNT} message conservé | {COUNT} messages conservés", 4 | "closeBt_aria": "Fermer la liste", 5 | "unpinBt_aria": "Retirer le message", 6 | "highlightBt_tt": "Mettre en avant sur le stream
(nécessite l'overlay dédié)", 7 | "highlightBt_aria": "Mettre le message en avant" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /i18n/fr/poll.json: -------------------------------------------------------------------------------- 1 | { 2 | "poll":{ 3 | "form":{ 4 | "title":"Créer un sondage", 5 | "created_by":"créé par {USER}", 6 | "closeBt_aria":"Fermer la fenêtre", 7 | "question":"Question", 8 | "answers":"Réponses (minimum 2)", 9 | "additional_votes":"Autoriser les votes supplémentaires", 10 | "additional_votes_amount":"Points de chaîne par vote", 11 | "vote_duration":"Durée du vote (minutes)" 12 | }, 13 | "state":{ 14 | "endBt":"Terminer le sondage" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /i18n/fr/sammi.json: -------------------------------------------------------------------------------- 1 | { 2 | "sammi":{ 3 | "header":"Connectez Twitchat à {LINK} et contrôlez-le depuis les Triggers", 4 | "instructions":"Dans SAMMI, rendez-vous dans \"Settings\" => \"Connections\" et assurez-vous que l'option \"Open Local API Server\" soit activée", 5 | "install":"Installer SAMMI", 6 | "connect_error":"Impossible de se connecter à SAMMI.", 7 | "ip":"IP", 8 | "port":"Port", 9 | "pass":"Password (optional)" 10 | } 11 | } -------------------------------------------------------------------------------- /i18n/fr/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "search":{ 3 | "title":"Résultats de recherche {COUNT}", 4 | "subtitle":"Recherche : \"{SEARCH}\"", 5 | "no_result":"Aucun résultat pour la recherche \"{SEARCH}\"" 6 | } 7 | } -------------------------------------------------------------------------------- /i18n/fr/streamelements.json: -------------------------------------------------------------------------------- 1 | { 2 | "streamelements": { 3 | "header":"Recevez vos alertes {LINK} dans Twitchat", 4 | "examples":"Example de message" 5 | } 6 | } -------------------------------------------------------------------------------- /i18n/fr/tiktok.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiktok": { 3 | "header":"Recevez les messages et alertes {LINK} dans Twitchat", 4 | "requirement":"Nécessite d'installer et configurer {LINK}", 5 | "install":"Installer TikFinity", 6 | "examples":"Message examples", 7 | "connect_error":"Impossible de se connecter à TikFinity." 8 | } 9 | } -------------------------------------------------------------------------------- /i18n/fr/tiltify.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiltify": { 3 | "header":"Recevez vos alertes {LINK} dans Twitchat", 4 | "examples":"Example de message", 5 | "create_donation_goals":"Créez des donation goals interactifs avec l'overlay dédié", 6 | "campaign_list":"Votre campagne Tiltify | Vos campagnes Tiltify", 7 | "no_campaign":"Votre compte Tiltify n'est lié à aucune campagne de financement", 8 | "copy_id_tt":"Copier l'ID de la campagne" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/fr/tipeee.json: -------------------------------------------------------------------------------- 1 | { 2 | "tipeee":{ 3 | "header":"Recevez les alertes {LINK} dans Twitchat", 4 | "examples":"Exemples de messages" 5 | } 6 | } -------------------------------------------------------------------------------- /i18n/fr/tracked.json: -------------------------------------------------------------------------------- 1 | { 2 | "tracked": { 3 | "title": "Personnes suivies", 4 | "no_message": "aucun message" 5 | } 6 | } -------------------------------------------------------------------------------- /i18n/fr/twitch_bot.json: -------------------------------------------------------------------------------- 1 | { 2 | "twitch_bot":{ 3 | "header": "Connectez un compte Twitch secondaire avec lequel envoyer les messages de bot", 4 | "auth_refused": "Vous avez refusez l'accès à votre compte Twitch", 5 | "auth_hint": "Cliquez le lien indiqué ci-dessous pour vous connecter avec votre compte secondaire", 6 | "hints": "Ajoutez votre bot à vos VIPs ou vos modos pour vous assurer que ses messages ne soient pas bloqués.", 7 | "add_modBt": "Ajouter aux modos", 8 | "add_vipBt": "Ajouter aux VIPs" 9 | } 10 | } -------------------------------------------------------------------------------- /i18n/fr/whispers.json: -------------------------------------------------------------------------------- 1 | { 2 | "whispers": { 3 | "title": "Chuchotements", 4 | "user_list":"Liste des personnes", 5 | "cant_send_1": "Impossible d'envoyer le message.", 6 | "cant_send_2": "Vous devez être affilié·e et avoir activé l'authentification à 2 facteurs pour envoyer des chuchotements hors Twitch.", 7 | "input_placeholder": "réponse...", 8 | "add_scope_bt":"Autoriser l'envoi de réponses" 9 | } 10 | } -------------------------------------------------------------------------------- /src_front/assets/chatPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/chatPlaceholder.png -------------------------------------------------------------------------------- /src_front/assets/chatPlaceholder_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/chatPlaceholder_gradient.png -------------------------------------------------------------------------------- /src_front/assets/fonts/AzeretMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/AzeretMono-Medium.ttf -------------------------------------------------------------------------------- /src_front/assets/fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /src_front/assets/fonts/Nunito-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/Nunito-Italic.ttf -------------------------------------------------------------------------------- /src_front/assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /src_front/assets/fonts/OpendyslexicBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/OpendyslexicBold.otf -------------------------------------------------------------------------------- /src_front/assets/fonts/OpendyslexicBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/OpendyslexicBoldItalic.otf -------------------------------------------------------------------------------- /src_front/assets/fonts/OpendyslexicItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/OpendyslexicItalic.otf -------------------------------------------------------------------------------- /src_front/assets/fonts/OpendyslexicRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/OpendyslexicRegular.otf -------------------------------------------------------------------------------- /src_front/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src_front/assets/fonts/inter-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/inter-latin.woff2 -------------------------------------------------------------------------------- /src_front/assets/fonts/nbsp.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/fonts/nbsp.woff2 -------------------------------------------------------------------------------- /src_front/assets/icons/arrowDown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src_front/assets/icons/avatar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src_front/assets/icons/coord_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src_front/assets/icons/coord_y.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src_front/assets/icons/elevenlabs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src_front/assets/icons/filters.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src_front/assets/icons/html.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src_front/assets/icons/key.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src_front/assets/icons/left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src_front/assets/icons/loader.svg: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src_front/assets/icons/mod.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src_front/assets/icons/next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src_front/assets/icons/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src_front/assets/icons/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src_front/assets/icons/playability.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src_front/assets/icons/prev.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src_front/assets/icons/question.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src_front/assets/icons/quote.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src_front/assets/icons/raidHighlight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src_front/assets/icons/recordStart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src_front/assets/icons/recordStop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src_front/assets/icons/right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src_front/assets/icons/scroll_horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src_front/assets/icons/settings.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src_front/assets/icons/shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src_front/assets/icons/sharedChat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src_front/assets/icons/skip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src_front/assets/icons/stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src_front/assets/icons/streamsocket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src_front/assets/icons/twitch_charity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src_front/assets/icons/vip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src_front/assets/icons/volume.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src_front/assets/img/barracuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/barracuda.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/1.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/100.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/1000.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/10000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/10000.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/10000_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/10000_tex.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/1000_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/1000_tex.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/100_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/100_tex.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/1_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/1_tex.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/5000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/5000.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/5000_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/5000_tex.png -------------------------------------------------------------------------------- /src_front/assets/img/bitswall/cheermotes_render.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/bitswall/cheermotes_render.gif -------------------------------------------------------------------------------- /src_front/assets/img/blured_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/blured_line.png -------------------------------------------------------------------------------- /src_front/assets/img/chat_animation/cosmic-abyss_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/chat_animation/cosmic-abyss_1.jpg -------------------------------------------------------------------------------- /src_front/assets/img/chat_animation/cosmic-abyss_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/chat_animation/cosmic-abyss_2.jpg -------------------------------------------------------------------------------- /src_front/assets/img/cursorDemo_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/cursorDemo_default.png -------------------------------------------------------------------------------- /src_front/assets/img/cursorDemo_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/cursorDemo_pointer.png -------------------------------------------------------------------------------- /src_front/assets/img/data_sharing/switchAccount_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/data_sharing/switchAccount_en.png -------------------------------------------------------------------------------- /src_front/assets/img/data_sharing/switchAccount_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/data_sharing/switchAccount_fr.png -------------------------------------------------------------------------------- /src_front/assets/img/default_music_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/default_music_cover.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/bubble.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/bubble2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/bubble2.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/bubble_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/bubble_shadow.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/heart.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/heart_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/heart_shadow.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/ripples.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/ripples_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/ripples_shadow.png -------------------------------------------------------------------------------- /src_front/assets/img/distortions/twirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/distortions/twirl.png -------------------------------------------------------------------------------- /src_front/assets/img/eating.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/eating.gif -------------------------------------------------------------------------------- /src_front/assets/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/github.png -------------------------------------------------------------------------------- /src_front/assets/img/goldenKappa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/goldenKappa.png -------------------------------------------------------------------------------- /src_front/assets/img/goxlr_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/goxlr_features.png -------------------------------------------------------------------------------- /src_front/assets/img/heat_anonymous_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/heat_anonymous_en.gif -------------------------------------------------------------------------------- /src_front/assets/img/heat_anonymous_fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/heat_anonymous_fr.gif -------------------------------------------------------------------------------- /src_front/assets/img/homepage/alert.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/alert.webm -------------------------------------------------------------------------------- /src_front/assets/img/homepage/bingo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/bingo.gif -------------------------------------------------------------------------------- /src_front/assets/img/homepage/clickToPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/clickToPlay.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/conversation.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/conversation.webm -------------------------------------------------------------------------------- /src_front/assets/img/homepage/custom_badges_name.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/custom_badges_name.gif -------------------------------------------------------------------------------- /src_front/assets/img/homepage/emergency.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/emergency.webm -------------------------------------------------------------------------------- /src_front/assets/img/homepage/goxlr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/goxlr.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/grain.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/grain_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/grain_dark.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/greet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/greet.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/merge_messages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/merge_messages.gif -------------------------------------------------------------------------------- /src_front/assets/img/homepage/minibadges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/minibadges.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/musicPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/musicPlayer.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/pause.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/play.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/raffle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/raffle.gif -------------------------------------------------------------------------------- /src_front/assets/img/homepage/readMark.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/readMark.webm -------------------------------------------------------------------------------- /src_front/assets/img/homepage/save.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/save.webm -------------------------------------------------------------------------------- /src_front/assets/img/homepage/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/search.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/shadow.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/spoiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/spoiler.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/streamdeck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/streamdeck.jpg -------------------------------------------------------------------------------- /src_front/assets/img/homepage/tiktok_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/tiktok_messages.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/triggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/triggers.png -------------------------------------------------------------------------------- /src_front/assets/img/homepage/tts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/tts.gif -------------------------------------------------------------------------------- /src_front/assets/img/homepage/voiceControl.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/voiceControl.webm -------------------------------------------------------------------------------- /src_front/assets/img/homepage/voicemod.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/voicemod.webp -------------------------------------------------------------------------------- /src_front/assets/img/homepage/youtube_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/homepage/youtube_messages.png -------------------------------------------------------------------------------- /src_front/assets/img/hypetrain_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/hypetrain_avatar.png -------------------------------------------------------------------------------- /src_front/assets/img/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/instagram.png -------------------------------------------------------------------------------- /src_front/assets/img/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/logout.png -------------------------------------------------------------------------------- /src_front/assets/img/mrbean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/mrbean.png -------------------------------------------------------------------------------- /src_front/assets/img/multiblindtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/multiblindtest.png -------------------------------------------------------------------------------- /src_front/assets/img/musicExampleCover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/musicExampleCover.jpg -------------------------------------------------------------------------------- /src_front/assets/img/obs-ws_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/obs-ws_credentials.png -------------------------------------------------------------------------------- /src_front/assets/img/obs_dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/obs_dock.png -------------------------------------------------------------------------------- /src_front/assets/img/overlays/ad_break.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/ad_break.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/animated_text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/animated_text.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/bingo_grids.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/bingo_grids.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/bits_wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/bits_wall.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/chat_poll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/chat_poll.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/counters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/counters.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/custom_train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/custom_train.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/donation_goals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/donation_goals.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/ending_credits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/ending_credits.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/highlights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/highlights.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/interractive_distortions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/interractive_distortions.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/labels.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/polls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/polls.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/predictions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/predictions.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/raffle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/raffle.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/spotify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/spotify.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/timer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/timer.jpg -------------------------------------------------------------------------------- /src_front/assets/img/overlays/ulule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/overlays/ulule.jpg -------------------------------------------------------------------------------- /src_front/assets/img/papa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/papa.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/chatHighlightVideo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/chatHighlightVideo.jpg -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/clickable_mentions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/clickable_mentions.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/conversation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/conversation.gif -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/firstUserBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/firstUserBadge.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/greetThem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/greetThem.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/groupIdenticalMessage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/groupIdenticalMessage.gif -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/liveMessages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/liveMessages.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/merge_messages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/merge_messages.gif -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/minibadges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/minibadges.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/multichat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/multichat.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/nofollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/nofollow.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/raid_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/raid_count.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/raid_infos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/raid_infos.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/recent_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/recent_account.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/rewardDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/rewardDetails.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/stop_countdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/stop_countdown.gif -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/stop_timer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/stop_timer.gif -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/trackUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/trackUser.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/translate_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/translate_messages.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/translate_username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/translate_username.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/verticalLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/verticalLayout.png -------------------------------------------------------------------------------- /src_front/assets/img/param_examples/voicemod_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/param_examples/voicemod_reset.png -------------------------------------------------------------------------------- /src_front/assets/img/shader_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/shader_warning.png -------------------------------------------------------------------------------- /src_front/assets/img/spoilerTutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/spoilerTutorial.png -------------------------------------------------------------------------------- /src_front/assets/img/streamdeck_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/streamdeck_credentials.png -------------------------------------------------------------------------------- /src_front/assets/img/streamsocket_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/streamsocket_graph.png -------------------------------------------------------------------------------- /src_front/assets/img/streamsocket_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/streamsocket_secret.png -------------------------------------------------------------------------------- /src_front/assets/img/tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/tiktok.png -------------------------------------------------------------------------------- /src_front/assets/img/twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/twitch.png -------------------------------------------------------------------------------- /src_front/assets/img/youtube_goxlr1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/youtube_goxlr1.jpg -------------------------------------------------------------------------------- /src_front/assets/img/youtube_goxlr2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/youtube_goxlr2.jpg -------------------------------------------------------------------------------- /src_front/assets/img/youtube_heat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/youtube_heat1.jpg -------------------------------------------------------------------------------- /src_front/assets/img/youtube_heat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/img/youtube_heat2.jpg -------------------------------------------------------------------------------- /src_front/assets/sounds/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/sounds/notification.mp3 -------------------------------------------------------------------------------- /src_front/assets/sounds/win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/sounds/win.mp3 -------------------------------------------------------------------------------- /src_front/assets/sounds/wizz.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/src_front/assets/sounds/wizz.mp3 -------------------------------------------------------------------------------- /src_front/dom-to-image-more.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'dom-to-image-more' { 2 | import domToImage = require('dom-to-image-more'); 3 | export = domToImage; 4 | } -------------------------------------------------------------------------------- /src_front/less/_includes.less: -------------------------------------------------------------------------------- 1 | @import "_mixins.less"; -------------------------------------------------------------------------------- /src_front/less/_mixins.less: -------------------------------------------------------------------------------- 1 | .bevel() { 2 | // @scale:2px; 3 | // box-shadow: inset -@scale -@scale @scale rgba(255, 255, 255, 0.1), inset @scale @scale @scale rgba(0, 0, 0, .3); 4 | } 5 | 6 | .emboss() { 7 | // @scale:2px; 8 | // box-shadow: -@scale -@scale @scale rgba(255, 255, 255, .1), @scale @scale @scale rgba(0, 0, 0, .3); 9 | } 10 | 11 | .center() { 12 | top: 50%; 13 | left: 50%; 14 | transform: translate(-50%, -50%); 15 | } 16 | -------------------------------------------------------------------------------- /src_front/less/blinkHighlight.less: -------------------------------------------------------------------------------- 1 | .blinkBorder { 2 | border: 0 solid transparent; 3 | transition: border-width .25s; 4 | 5 | &.blink { 6 | border-width: 5px; 7 | border-radius: 1em; 8 | animation: blink .5s 3 forwards; 9 | animation-delay: .5s; 10 | @keyframes blink { 11 | 0% { 12 | border-color: var(--color-secondary); 13 | } 14 | 50% { 15 | border-color: transparent; 16 | } 17 | 100% { 18 | border-color: var(--color-secondary); 19 | } 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /src_front/less/cssStructure.less: -------------------------------------------------------------------------------- 1 | .cssStructure { 2 | font-size: .9em; 3 | li { 4 | list-style-type: disc; 5 | list-style-position: inside; 6 | margin-bottom: .25em; 7 | &.sublist { 8 | list-style-type: none; 9 | } 10 | ul { 11 | margin-top: 0; 12 | display: inline; 13 | list-style-type: none; 14 | li { 15 | margin-left: 1em; 16 | } 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /src_front/shims-vue.d.ts: -------------------------------------------------------------------------------- 1 | 2 | declare module '*.vue' { 3 | import type { DefineComponent } from 'vue'; 4 | const component: DefineComponent, Record, unknown>; 5 | export default component; 6 | interface ElementAttrs extends AriaAttributes, DOMAttributes { 7 | } 8 | } -------------------------------------------------------------------------------- /src_front/types/HeatDataTypes.ts: -------------------------------------------------------------------------------- 1 | export interface HeatScreen { 2 | id:string; 3 | areas:HeatArea[]; 4 | enabled:boolean; 5 | activeOBSScene:string; 6 | } 7 | 8 | export interface HeatArea { 9 | id:string; 10 | points:{ 11 | /** 12 | * X position in percent 13 | */ 14 | x:number; 15 | /** 16 | * Y position in percent 17 | */ 18 | y:number; 19 | }[]; 20 | } -------------------------------------------------------------------------------- /src_front/utils/voice/VoicemodEvent.ts: -------------------------------------------------------------------------------- 1 | import { Event } from '@/events/EventDispatcher'; 2 | 3 | export default class VoicemodEvent extends Event { 4 | 5 | public static VOICE_CHANGE = "VOICE_CHANGE"; 6 | 7 | constructor(type:string, public voiceID?:string, public voiceName?:string) { 8 | super(type); 9 | } 10 | 11 | } -------------------------------------------------------------------------------- /src_front/vue-flag.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'vue-select'; 2 | //Module doesn't seem compatible with my config. Dunno why 3 | declare module 'vue3-marquee'; -------------------------------------------------------------------------------- /src_lande/lande_worker.ts: -------------------------------------------------------------------------------- 1 | import lande from 'lande'; 2 | 3 | // Listen for messages from the main thread 4 | self.onmessage = function(event) { 5 | const result = lande(event.data.text ?? ""); 6 | postMessage({id:event.data.id, result}); 7 | }; -------------------------------------------------------------------------------- /static/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/beta.png -------------------------------------------------------------------------------- /static/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/dev.png -------------------------------------------------------------------------------- /static/discord/command_permissions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/discord/command_permissions.gif -------------------------------------------------------------------------------- /static/displacement/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/bubble.png -------------------------------------------------------------------------------- /static/displacement/bubble2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/bubble2.png -------------------------------------------------------------------------------- /static/displacement/expand.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/expand.psd -------------------------------------------------------------------------------- /static/displacement/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/grid.png -------------------------------------------------------------------------------- /static/displacement/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/heart.png -------------------------------------------------------------------------------- /static/displacement/heart.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/heart.psd -------------------------------------------------------------------------------- /static/displacement/ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/ripples.png -------------------------------------------------------------------------------- /static/displacement/shadows.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/shadows.ai -------------------------------------------------------------------------------- /static/displacement/twirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/twirl.png -------------------------------------------------------------------------------- /static/displacement/twirl.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/displacement/twirl.psd -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/favicon.png -------------------------------------------------------------------------------- /static/loader.svg: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/logo.ai -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/logo.png -------------------------------------------------------------------------------- /static/logo_christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/logo_christmas.png -------------------------------------------------------------------------------- /static/logo_halloween.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/logo_halloween.gif -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "background_color": "purple", 3 | "description": "Full featured chat alternative for Twitch", 4 | "display": "fullscreen", 5 | "icons": [ 6 | { 7 | "src": "favicon.png", 8 | "sizes": "192x192", 9 | "type": "image/png" 10 | } 11 | ], 12 | "name": "Twitchat", 13 | "short_name": "Twitchat", 14 | "start_url": "index.html" 15 | } -------------------------------------------------------------------------------- /static/service-worker.js: -------------------------------------------------------------------------------- 1 | self.addEventListener("fetch", (event) => { 2 | 3 | }); -------------------------------------------------------------------------------- /static/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/share.png -------------------------------------------------------------------------------- /static/share_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/share_small.png -------------------------------------------------------------------------------- /static/update_images/chat_poll.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/chat_poll.mp4 -------------------------------------------------------------------------------- /static/update_images/custom_train.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/custom_train.mp4 -------------------------------------------------------------------------------- /static/update_images/groq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/groq.gif -------------------------------------------------------------------------------- /static/update_images/solong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/solong.png -------------------------------------------------------------------------------- /static/update_images/stream_deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/stream_deck.png -------------------------------------------------------------------------------- /static/update_images/streamsocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/streamsocket.png -------------------------------------------------------------------------------- /static/update_images/text_anim.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/text_anim.mp4 -------------------------------------------------------------------------------- /static/update_images/timers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/update_images/timers.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/baseballwhitecapout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/baseballwhitecapout.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/bodyblueraisedarms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/bodyblueraisedarms.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/bodygreencoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/bodygreencoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/bodyturquoiseyogapose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/bodyturquoiseyogapose.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/buffering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/buffering.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/cardredpenalty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/cardredpenalty.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/catorangewhistling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/catorangewhistling.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/chillwcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/chillwcat.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/chillwdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/chillwdog.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/clockturquoiselookingup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/clockturquoiselookingup.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/dothefive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/dothefive.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/elbowbump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/elbowbump.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/elbowcough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/elbowcough.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/eyespinkheartshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/eyespinkheartshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/eyespurplecrying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/eyespurplecrying.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluecoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluecoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluedroopyeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluedroopyeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluehearteyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluehearteyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluequestionmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluequestionmark.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluesmiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluesmiling.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluespamshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluespamshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluestareyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluestareyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluethreeeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluethreeeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facebluewideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facebluewideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facefuchsiaflowershape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facefuchsiaflowershape.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facefuchsiapoopshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facefuchsiapoopshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facefuchsiatongueout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facefuchsiatongueout.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facefuchsiawideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facefuchsiawideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facegreensmiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facegreensmiling.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceorangebitingnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceorangebitingnails.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceorangefrowning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceorangefrowning.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceorangeraisedeyebrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceorangeraisedeyebrow.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceorangetvshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceorangetvshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepinkdrinkingtea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepinkdrinkingtea.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepinktears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepinktears.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepurplecrying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepurplecrying.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepurpleopenbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepurpleopenbox.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepurpleraindrops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepurpleraindrops.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepurplesmilingfangs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepurplesmilingfangs.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepurplesmilingtears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepurplesmilingtears.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepurplesweating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepurplesweating.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facepurplewideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facepurplewideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/facereddroopyeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/facereddroopyeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceredheartshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceredheartshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceredsmilinglive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceredsmilinglive.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceturquoisecoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceturquoisecoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceturquoisedrinkingcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceturquoisedrinkingcoffee.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceturquoisemusicnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceturquoisemusicnote.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/faceturquoisespeakershape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/faceturquoisespeakershape.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/fingerrednumberone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/fingerrednumberone.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/fishorangewideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/fishorangewideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/gar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/gar.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/glassespurpleyellowdiamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/glassespurpleyellowdiamond.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/goatturquoisewhitehorns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/goatturquoisewhitehorns.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/goodvibes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/goodvibes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/handgreencrystalball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/handgreencrystalball.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/handorangecoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/handorangecoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/handpinkwaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/handpinkwaving.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/handpurplebluepeace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/handpurplebluepeace.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/handsyellowheartred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/handsyellowheartred.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/hourglasspurplesandorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/hourglasspurplesandorange.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/hydrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/hydrate.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/learning.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/locationyellowtealbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/locationyellowtealbars.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/medalyellowfirstred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/medalyellowfirstred.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/octopusredwaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/octopusredwaving.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/oops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/oops.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/penguinbluewavingtear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/penguinbluewavingtear.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personblueeatingspaghetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personblueeatingspaghetti.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personblueholdingpencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personblueholdingpencil.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personbluespeakingmicrophone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personbluespeakingmicrophone.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personbluewheelchairrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personbluewheelchairrace.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personpinkswayinghair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personpinkswayinghair.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personpurplestageevent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personpurplestageevent.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personturqouisewaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personturqouisewaving.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personturquoisecrowdsurf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personturquoisecrowdsurf.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personturquoisewavingspeech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personturquoisewavingspeech.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personturquoisewizardwand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personturquoisewizardwand.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personturquoisewritingheadphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personturquoisewritingheadphones.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/personyellowpodiumblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/personyellowpodiumblue.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/pillowturquoisehotchocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/pillowturquoisehotchocolate.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/planetorangepurplering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/planetorangepurplering.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/popcornyellowstripedsmile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/popcornyellowstripedsmile.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/rocketredcountdownliftoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/rocketredcountdownliftoff.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/sanitizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/sanitizer.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/shelterin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/shelterin.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/socialdist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/socialdist.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/stayhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/stayhome.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/stopwatchbluehandtimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/stopwatchbluehandtimer.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/takeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/takeout.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/textgreengameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/textgreengameover.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/textyellowgoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/textyellowgoal.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/thanksdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/thanksdoc.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/trophyyellowsmiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/trophyyellowsmiling.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/videocall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/videocall.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/virtualhug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/virtualhug.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/volcanogreenlavaorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/volcanogreenlavaorange.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/washhands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/washhands.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/whistleredblow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/whistleredblow.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/yougotthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/yougotthis.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/yt.png -------------------------------------------------------------------------------- /static/youtube/emotes/hd/ytg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/hd/ytg.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/baseballwhitecapout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/baseballwhitecapout.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/bodyblueraisedarms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/bodyblueraisedarms.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/bodygreencoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/bodygreencoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/bodyturquoiseyogapose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/bodyturquoiseyogapose.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/buffering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/buffering.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/cardredpenalty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/cardredpenalty.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/catorangewhistling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/catorangewhistling.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/chillwcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/chillwcat.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/chillwdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/chillwdog.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/clockturquoiselookingup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/clockturquoiselookingup.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/dothefive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/dothefive.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/elbowbump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/elbowbump.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/elbowcough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/elbowcough.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/eyespinkheartshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/eyespinkheartshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/eyespurplecrying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/eyespurplecrying.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluecoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluecoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluedroopyeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluedroopyeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluehearteyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluehearteyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluequestionmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluequestionmark.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluesmiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluesmiling.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluespamshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluespamshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluestareyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluestareyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluethreeeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluethreeeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facebluewideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facebluewideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facefuchsiaflowershape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facefuchsiaflowershape.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facefuchsiapoopshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facefuchsiapoopshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facefuchsiatongueout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facefuchsiatongueout.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facefuchsiawideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facefuchsiawideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facegreensmiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facegreensmiling.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceorangebitingnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceorangebitingnails.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceorangefrowning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceorangefrowning.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceorangeraisedeyebrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceorangeraisedeyebrow.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceorangetvshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceorangetvshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepinkdrinkingtea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepinkdrinkingtea.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepinktears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepinktears.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepurplecrying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepurplecrying.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepurpleopenbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepurpleopenbox.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepurpleraindrops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepurpleraindrops.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepurplesmilingfangs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepurplesmilingfangs.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepurplesmilingtears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepurplesmilingtears.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepurplesweating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepurplesweating.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facepurplewideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facepurplewideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/facereddroopyeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/facereddroopyeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceredheartshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceredheartshape.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceredsmilinglive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceredsmilinglive.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceturquoisecoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceturquoisecoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceturquoisedrinkingcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceturquoisedrinkingcoffee.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceturquoisemusicnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceturquoisemusicnote.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/faceturquoisespeakershape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/faceturquoisespeakershape.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/fingerrednumberone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/fingerrednumberone.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/fishorangewideeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/fishorangewideeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/gar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/gar.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/glassespurpleyellowdiamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/glassespurpleyellowdiamond.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/goatturquoisewhitehorns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/goatturquoisewhitehorns.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/goodvibes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/goodvibes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/handgreencrystalball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/handgreencrystalball.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/handorangecoveringeyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/handorangecoveringeyes.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/handpinkwaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/handpinkwaving.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/handpurplebluepeace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/handpurplebluepeace.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/handsyellowheartred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/handsyellowheartred.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/hourglasspurplesandorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/hourglasspurplesandorange.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/hydrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/hydrate.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/learning.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/locationyellowtealbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/locationyellowtealbars.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/medalyellowfirstred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/medalyellowfirstred.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/octopusredwaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/octopusredwaving.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/oops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/oops.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/penguinbluewavingtear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/penguinbluewavingtear.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personblueeatingspaghetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personblueeatingspaghetti.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personblueholdingpencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personblueholdingpencil.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personbluespeakingmicrophone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personbluespeakingmicrophone.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personbluewheelchairrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personbluewheelchairrace.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personpinkswayinghair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personpinkswayinghair.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personpurplestageevent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personpurplestageevent.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personturqouisewaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personturqouisewaving.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personturquoisecrowdsurf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personturquoisecrowdsurf.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personturquoisewavingspeech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personturquoisewavingspeech.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personturquoisewizardwand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personturquoisewizardwand.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personturquoisewritingheadphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personturquoisewritingheadphones.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/personyellowpodiumblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/personyellowpodiumblue.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/pillowturquoisehotchocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/pillowturquoisehotchocolate.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/planetorangepurplering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/planetorangepurplering.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/popcornyellowstripedsmile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/popcornyellowstripedsmile.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/rocketredcountdownliftoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/rocketredcountdownliftoff.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/sanitizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/sanitizer.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/shelterin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/shelterin.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/socialdist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/socialdist.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/stayhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/stayhome.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/stopwatchbluehandtimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/stopwatchbluehandtimer.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/takeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/takeout.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/textgreengameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/textgreengameover.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/textyellowgoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/textyellowgoal.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/thanksdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/thanksdoc.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/trophyyellowsmiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/trophyyellowsmiling.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/videocall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/videocall.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/virtualhug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/virtualhug.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/volcanogreenlavaorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/volcanogreenlavaorange.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/washhands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/washhands.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/whistleredblow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/whistleredblow.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/yougotthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/yougotthis.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/yt.png -------------------------------------------------------------------------------- /static/youtube/emotes/sd/ytg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/static/youtube/emotes/sd/ytg.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/assets/caret.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/assets/caret_closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/assets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/assets/check.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/assets/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/assets/rcheck.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/assets/tick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/chat-feed-select-layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "$A0", 3 | "items": [ 4 | { 5 | "key": "ttitle", 6 | "type": "text", 7 | "alignment": "left", 8 | "rect": [16, 10, 180, 24], 9 | "font": { "size": 17, "weight": 600 }, 10 | "value": "Take action" 11 | }, 12 | { 13 | "key": "action", 14 | "type": "text", 15 | "rect": [0, 50, 200, 24], 16 | "font": { "size": 20, "weight": 800 }, 17 | "value": "", 18 | "color": "#00FF00" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/fr.twitchat.streamDeckPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/fr.twitchat.streamDeckPlugin -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ACTIVITY_FEED_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_ACCEPT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/AUTOMOD_REJECT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/BINGO_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CENSOR_DELETED_MESSAGES_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_PAUSE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_ALL_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_READ_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_DOWN_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_screen.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_ENCODER_screen@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_SCROLL_UP_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CHAT_FEED_UNPAUSE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/CLEAR_CHAT_HIGHLIGHT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNTDOWN_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/COUNT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/DISABLE_STT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EMERGENCY_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/ENABLE_STT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/EXECUTE_TRIGGER_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/GREET_FEED_READ_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/HIDE_ALERT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MERGE_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/MOD_TOOLS_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/POLL_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/PREDICTION_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_HIGHLIGHT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/QNA_SKIP_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_PICK_WINNER_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/RAFFLE_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SEND_MESSAGE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/SHOUTOUT_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/STOP_TTS_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TARGET_MESSAGE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TIMER_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/TOGGLE_TRIGGER_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE_default.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/VIEWERS_COUNT_TOGGLE_default@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionDefaultImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionDefaultImage.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionDefaultImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionDefaultImage@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionIcon.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/actionIcon@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/empty.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/pluginIcon.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/icons/pluginIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/icons/pluginIcon@2x.png -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/previews/1-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/previews/1-preview.jpg -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.sdPlugin/previews/2-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.sdPlugin/previews/2-preview.jpg -------------------------------------------------------------------------------- /streamdeck_plugin/fr.twitchat.streamDeckPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/fr.twitchat.streamDeckPlugin -------------------------------------------------------------------------------- /streamdeck_plugin/gallery.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/gallery.ai -------------------------------------------------------------------------------- /streamdeck_plugin/icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Durss/Twitchat/bb8147f1f6615a6cc6adeb33d77ffc35acf20185/streamdeck_plugin/icons.ai -------------------------------------------------------------------------------- /tsconfig.vite-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@vue/tsconfig/tsconfig.lib.json", 3 | "include": [ 4 | "vite.config.*" 5 | ], 6 | "compilerOptions": { 7 | "composite": true, 8 | "target": "esnext", 9 | "module": "esnext", 10 | "moduleResolution": "node", 11 | "types": [ 12 | "node" 13 | ] 14 | } 15 | } --------------------------------------------------------------------------------