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 Music (YTM) Keyboard controls | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-07-01 | |
| // @description Seek and control volume using keyboard arrows in YouTube Music. | |
| // @author You | |
| // @match https://music.youtube.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant none | |
| // ==/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
| #include <bits/stdc++.h> | |
| using namespace std; | |
| int check_precedence(char op) | |
| { | |
| switch (op) | |
| { | |
| case '+': | |
| case '-': |