├── .github └── ISSUE_TEMPLATE │ └── request_addition.yml └── README.md /.github/ISSUE_TEMPLATE/request_addition.yml: -------------------------------------------------------------------------------- 1 | name: Request an Addition 2 | description: Request for a tool/application to be added to the list 3 | labels: [issue-report] 4 | 5 | body: 6 | - type: checkboxes 7 | id: prerequisites 8 | attributes: 9 | label: Submission checklist 10 | description: 11 | options: 12 | - label: This item is not on the list 13 | required: true 14 | - label: An issue does not exist for this item (open or closed) 15 | required: true 16 | 17 | - type: input 18 | id: name 19 | validations: 20 | required: true 21 | attributes: 22 | label: Tool name 23 | description: | 24 | Name of the tool/application. 25 | placeholder: | 26 | Supibot 27 | 28 | - type: input 29 | id: link 30 | validations: 31 | required: true 32 | attributes: 33 | label: Website/repository URL 34 | description: | 35 | Provide a link to the tool (website or source code repo). 36 | placeholder: | 37 | https://example.com/some-tool 38 | 39 | - type: input 40 | id: category 41 | validations: 42 | required: true 43 | attributes: 44 | label: Category 45 | description: | 46 | What category does this tool belong to (see the list's categories or suggest a new one). 47 | placeholder: | 48 | Chat bot 49 | 50 | - type: textarea 51 | id: description 52 | validations: 53 | required: true 54 | attributes: 55 | label: Description 56 | description: | 57 | Write a brief description of the tool. 58 | placeholder: | 59 | A multi-platform novelty & utility chat bot. 60 | 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # awesome-twitch-stuff 2 | A list of awesome Twitch/streaming-related tools 3 | 4 | ## Categories 5 | - [Broadcasting Tools](#broadcasting-tools) 6 | - [Chat Applications](#chat-applications) 7 | - [Chat Bots](#chat-bots) 8 | - [Command Integrations](#command-integrations) 9 | - [Emote Tools](#emote-tools) 10 | - [Emotes](#emotes) 11 | - [Music Sharing](#music-sharing) 12 | - [Overlays](#overlays) 13 | - [Voting/Polling](#votingpolling) 14 | 15 | ### Chat Applications 16 | 17 | - [Chatterino](https://chatterino.com) - a mutliplatform Twitch chat client 18 | - [Chatterino7](https://github.com/SevenTV/chatterino7) - a fork of Chatterino with 7TV emote support 19 | - [Chatty](https://chatty.github.io) - a chat software specifically made for Twitch, running on any OS supporting Java 8 or later 20 | 21 | ### Broadcasting Tools 22 | 23 | - [vdo.ninja](https://vdo.ninja) - Bring live video from your smartphone, remote computer, or friends directly into OBS or other studio software 24 | 25 | ### Chat Bots 26 | 27 | - [Fossabot](https://fossabot.com) - a Twitch chat bot that has all the features you need to create the ultimate chat experience for yourself and your audience 28 | - [NightBot](https://nightbot.tv) - a chat bot for Twitch, YouTube, and Trovo that allows you to automate your live stream's chat with moderation and new features, allowing you to spend more time entertaining your viewers 29 | - [StreamElements](https://streamelements.com) - the official chat bot for the StreamElements service 30 | - [Supibot](https://supinic.com) - Multiplatform, utility & novelty chat bot 31 | 32 | ### Command Integrations 33 | 34 | - [Groke.se](https://groke.se/twitch/spotify) - allows retrieval of the currently playing Spotify song by most chat bots via account linking 35 | 36 | ### Emote Tools 37 | 38 | - [Levi506's Emote Tester](https://levi506.net/emote-tester) - test emotes for scaling/contrast issues before they're uploaded 39 | 40 | ### Emotes 41 | 42 | - [BetterTTV](https://betterttv.com) - 3rd party emote service with support for animated emotes 43 | - [FrankerFaceZ](https://frankerfacez.com) - 3rd party emote service featuring wide emotes 44 | - [7TV](https://7tv.app) - a new 3rd party emote service and extension for Twitch and YouTube 45 | 46 | ### Music Sharing 47 | 48 | - [Pubby](https://pubby.club) - a plug.dj-inspired room-based DJ service supporting Soundcloud, YouTube, and Vimeo media 49 | - [QueUp](https://queup.net) - a social DJ site where users can share and discover the music by tuning in to user-generated playlists (formerly Dubtrack) 50 | 51 | ### Overlays 52 | 53 | - [jChat](https://www.giambaj.it/twitch/jchat/) - a customizable chat overlay supporting 7TV, BetterTTV, & FFZ emotes 54 | - [NowPlaying](https://widget.nowplaying.site/) - show your currently playing song by connecting your StreamElements & Spotify accounts 55 | 56 | ### Voting/Polling 57 | 58 | - [chat.vote](https://chat.vote) - a site that lets you make polls that you vote on by typing in chat. Also has raffles and strawpoll style shareable polls. 59 | --------------------------------------------------------------------------------