Skip to content

Instantly share code, notes, and snippets.

@Tcip
Created April 2, 2024 18:50
Show Gist options
  • Save Tcip/dfe03777115853b54f233b7929e5b8d1 to your computer and use it in GitHub Desktop.
Save Tcip/dfe03777115853b54f233b7929e5b8d1 to your computer and use it in GitHub Desktop.
This will take you to the schedule tab for the current Twitch channel you are watching.
javascript:(function(){location.href=location.href.substring(location.href.indexOf(location.pathname)).concat('/schedule')})()
@Tcip
Copy link
Author

Tcip commented Apr 2, 2024

view Twitch Schedule Bookmarklet.js

This will take you to the schedule tab for the current Twitch channel you are watching.

Install

To install the bookmarklet drag and drop it to the bookmars toolbar.

Why do you want this?

When channels go live, the schedule button is hidden. Or difficult to find depending on platform.

Tested with the following browsers

Raw JavaScript

javascript:(function(){location.href=location.href.substring(location.href.indexOf(location.pathname)).concat('/schedule')})()

Alternative

location.href=location.href.substring(location.href.indexOf(location.pathname)).concat('/schedule')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment