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 oii - osu! improvement indicator | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description https://github.com/ferryhmm/oii | |
| // @author ferryhmm / ad1107 | |
| // @match https://osu.ppy.sh/users/* | |
| // @grant none | |
| // @icon https://raw.githubusercontent.com/ferryhmm/oii/refs/heads/main/images/oii128.png | |
| // ==/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
| // ==UserScript== | |
| // @name Youtube Speed Controls | |
| // @version 2.0.0 | |
| // @description Speed / Pitch changer control bar for YouTube | |
| // @author AD | |
| // @match http*://www.youtube.com/watch* | |
| // @icon https://www.google.com/s2/favicons?domain=youtube.com | |
| // @grant none | |
| // @license MPL-2.0 | |
| // ==/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
| // ==UserScript== | |
| // @name Shopee Order Statistics | |
| // @namespace ad-shopeestats | |
| // @version 1.0 | |
| // @description Overall value of the total orders. | |
| // @author AD | |
| // @match https://shopee.vn/ | |
| // @grant GM_addStyle | |
| // @icon64 https://www.google.com/s2/favicons?domain=shopee.vn | |
| // ==/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 asyncio | |
| import json | |
| import websockets | |
| print("WebSocket Server Tester (JSON Format)") | |
| address = input("Enter address: ") | |
| if address.strip() == '': |
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
| :: BatchGotAdmin | |
| :------------------------------------- | |
| REM --> Check for permissions | |
| >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" | |
| REM --> If error flag set, we do not have admin. | |
| if '%errorlevel%' NEQ '0' ( | |
| echo Requesting administrative privileges... | |
| goto UACPrompt | |
| ) else ( goto gotAdmin ) |