Skip to content

Instantly share code, notes, and snippets.

@klydeinside
klydeinside / twitch-liquid-glass-suite.user.js
Last active August 12, 2026 21:12
Twitch userscripts - Liquid Glass Suite (merged)
// ==UserScript==
// @name Twitch – Liquid Glass Suite
// @namespace https://cody-tools.local
// @version 1.3
// @description All-in-one: frosted "Liquid Glass" sidebar treatment (Off/Subtle/More/Full — Full gives each followed-channel card a raised glass-bubble look), a Live Follows shortcut button (mini-player dims via a dark overlay pseudo-element instead of opacity, so the video's own compositing is never touched), and a narrow Following grid — all controlled from one glass-styled settings panel (gear icon, bottom-right). Replaces twitch-liquid-glass-sidebar, twitch-open-chat-button, and twitch-following-narrow-grid.
// @match https://www.twitch.tv/*
// @grant GM_setValue
// @grant GM_getValue
// @updateURL https://gist.githubusercontent.com/klydeinside/ec546153caba19d37890dd5a0f0f1ade/raw/twitch-liquid-glass-suite.user.js
// @downloadURL https://gist.githubusercontent.com/klydeinside/ec546153caba19d37890dd5a0f0f1ade/raw/twitch-liquid-glass-suite.user.js
@klydeinside
klydeinside / twitch-following-narrow-grid.user.js
Last active August 12, 2026 05:19
Twitch userscripts - Following Directory Narrow Grid
// ==UserScript==
// @name Twitch – Following Directory Narrow Grid
// @namespace https://cody-tools.local
// @version 1.3
// @description Forces the twitch.tv/directory/following/live grid into 2 or 3 columns so everything stays close to the left instead of spreading across the whole screen, with the hover lift/glow from the Live Follows Grid script. Runs sitewide so it's already active when you arrive via client-side navigation (e.g. the Live Follows Shortcut button), not just on a hard page load of the directory URL.
// @match https://www.twitch.tv/*
// @grant GM_setValue
// @grant GM_getValue
// @updateURL https://gist.githubusercontent.com/klydeinside/21441df99f4d0f116ee22838295cd76e/raw/twitch-following-narrow-grid.user.js
// @downloadURL https://gist.githubusercontent.com/klydeinside/21441df99f4d0f116ee22838295cd76e/raw/twitch-following-narrow-grid.user.js
@klydeinside
klydeinside / twitch-open-chat-button.user.js
Last active August 12, 2026 19:43
Twitch userscripts - Live Follows Shortcut Button
// ==UserScript==
// @name Twitch – Live Follows Shortcut Button
// @namespace https://cody-tools.local
// @version 1.5
// @description Adds a one-click button right next to the side-nav collapse arrow (same icon/style as Twitch's own "Collapse Chat" button) that jumps straight to https://www.twitch.tv/directory/following/live using Twitch's own client-side router — so a stream you're watching drops into mini-player instead of the whole site reloading. The mini-player itself dims to 45% opacity so it doesn't block the grid behind it, and snaps to full opacity on hover.
// @match https://www.twitch.tv/*
// @grant none
// @updateURL https://gist.githubusercontent.com/klydeinside/3e2babc1e2f21d458cb9b4214be13c2e/raw/twitch-open-chat-button.user.js
// @downloadURL https://gist.githubusercontent.com/klydeinside/3e2babc1e2f21d458cb9b4214be13c2e/raw/twitch-open-chat-button.user.js
// ==/UserScript==
@klydeinside
klydeinside / twitch-liquid-glass-sidebar.user.js
Last active August 12, 2026 04:46
Twitch userscripts - Liquid Glass Sidebar
// ==UserScript==
// @name Twitch – Liquid Glass Sidebar
// @namespace https://cody-tools.local
// @version 1.6
// @description Frosted, glossy "Liquid Glass" treatment for the Twitch left sidebar (original iOS 26 beta style — almost fully see-through with a crisp bright rim) plus a cursor-tracked shine on hover. Hides the sidebar scrollbar. Cycle intensity with the bottom-right pill.
// @match https://www.twitch.tv/*
// @grant GM_setValue
// @grant GM_getValue
// @updateURL https://gist.githubusercontent.com/klydeinside/348c673b051fda32ad4cd63dde544626/raw/twitch-liquid-glass-sidebar.user.js
// @downloadURL https://gist.githubusercontent.com/klydeinside/348c673b051fda32ad4cd63dde544626/raw/twitch-liquid-glass-sidebar.user.js
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SIMKL Share Card</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
04:48:20.505 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6769:OnVisualTreeChange]: ========================================
04:48:20.506 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6774:OnVisualTreeChange]: Mutation type: Add 2326934320360
04:48:20.507 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6786:OnVisualTreeChange]: Element type: Windows.UI.Xaml.Window
04:48:20.507 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6799:OnVisualTreeChange]: Skipping non-FrameworkElement
04:48:20.508 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6769:OnVisualTreeChange]: ========================================
04:48:20.509 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6774:OnVisualTreeChange]: Mutation type: Add 2326934544616
04:48:20.509 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6786:OnVisualTreeChange]: Element type: Windows.UI.Xaml.PopupRoot
04:48:20.510 22444 SearchHost.exe [WH] [windows-11-start-menu-styler] [6794:OnVisu
// ==UserScript==
// @name mTurk Frame->Parent Interface Library
// @namespace salembeats
// @version 5.2
// @description Library to make it easier to send messages to mTurk parent windows from the worker iFrames.
// @author Cuyler Stuwe (salembeats)
// @grant GM_xmlhttpRequest
// @icon http://ez-link.us/sb-png
// ==/UserScript==
@klydeinside
klydeinside / MTCAllWhite
Created June 5, 2018 16:25
MTC All White Background
document.body.style.backgroundColor = "white";
.div {
background: white;
font: red;
}
.messageContent {
background: white;
border: 1px #1496BB dashed;
font: red;
}