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 Holodex Multiview YouTube Embed Recovery | |
| // @namespace Nep | |
| // @version 0.0.1 | |
| // @author Nep | |
| // @description Automatically detects stalled YouTube embeds and restores playback via native Holodex Vue refresh or iframe replacement, preserving volume, mute state, query parameters, and autoplay settings. | |
| // @match https://holodex.net/* | |
| // @match https://www.youtube.com/embed/* | |
| // @run-at document-start | |
| // @grant GM_getValue |
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 Youtube Embed Fixes | |
| // @version 2024-12-30 | |
| // @description Temp fixes for youtube embed issues | |
| // @author Nep | |
| // @connect www.youtube.com | |
| // @match https://www.youtube.com/embed/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant unsafeWindow | |
| // @grant GM_xmlhttpRequest |
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 Youtube Membership Embed Temp Fix | |
| // @version 2024-12-29 | |
| // @description Temp fix for membership embeds | |
| // @author Nep | |
| // @match https://www.youtube.com/embed/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant unsafeWindow | |
| // @run-at document-start | |
| // ==/UserScript== |