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 Shorts key controls | |
| // @version 0.1 | |
| // @namespace Violentmonkey Scripts | |
| // @description Adds key controls to YouTube Shorts | |
| // @author CarlosMarques | |
| // @match https://www.youtube.com/* | |
| // @grant none | |
| // @license MIT | |
| // ==/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
| // EXAMPLES: | |
| // 1 - Creates new element <div> | |
| // document.createElement("div") | |
| // 2 - Creates new element <div id="my-new-div" style="background-color: red; display: none;"> | |
| // document.createElement({ |
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 Persistent YoutTube video queue | |
| // @version 0.1 | |
| // @namespace Violentmonkey Scripts | |
| // @description Make the YoutTube video queue persistent through sessions | |
| // @author CarlosMarques | |
| // @match https://www.youtube.com/* | |
| // @grant none | |
| // ==/UserScript== |