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 Google Search - Silent Append -ai | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Silently appends "-ai" to Google searches without showing it in the search input box. | |
| // @author Nighthawk | |
| // @match https://*.google.com/search* | |
| // @match https://*.google.com/ | |
| // @grant none | |
| // @run-at document-start |
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 subprocess | |
| import datetime | |
| import sys | |
| from tqdm import tqdm # For progress bars | |
| from colorama import Fore, Style, init | |
| # Initialize colorama | |
| init(autoreset=True) |
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 Wowhead Tooltips on Reddit | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Show Wowhead tooltips on valid Reddit Wowhead links | |
| // @author Nighthawk42 | |
| // @match https://www.reddit.com/* | |
| // @match https://old.reddit.com/* | |
| // @grant none | |
| // ==/UserScript== |