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 Letras.mus.br - Romaji to Hiragana / Hide Romaji | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description Hides Romaji lyrics or converts them to Hiragana on Letras.mus.br using specific .romanization selectors. | |
| // @author You | |
| // @match https://www.letras.mus.br/* | |
| // @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> | |
| #define debug(args...) printf(args);fflush(stdout) | |
| using namespace std; | |
| #define pb push_back | |
| #define mk make_pair | |
| #define eb emplace_back | |
| #define fi first | |
| #define se second |