This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.body.style.backgroundColor = "white"; | |
| .div { | |
| background: white; | |
| font: red; | |
| } | |
| .messageContent { | |
| background: white; | |
| border: 1px #1496BB dashed; | |
| font: red; | |
| } |