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 Minesweeper Online Top % Rank | |
| // @namespace https://minesweeper.online/ | |
| // @version 1.0 | |
| // @description Display top % next to rank on Minesweeper Online PvP page | |
| // @author You | |
| // @match https://minesweeper.online/* | |
| // @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
| import os | |
| import traceback | |
| from datetime import datetime | |
| from colorama import init, Fore | |
| # Initialize colorama | |
| init(autoreset=True) | |
| class Logger: | |
| def __init__(self, from_updater=False): |
OlderNewer