Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name NPC and item pictures for aowow
// @namespace Violentmonkey Scripts
// @match https://aowow.trinitycore.info/
// @grant none
// ==/UserScript==
"use strict";
if (jQuery("#view3D-button").length > 0 && !jQuery("#view3D-button").hasClass("button-red-disabled")) {
{
"createdBy": "Redirector v3.5.3",
"createdAt": "2023-03-16T20:10:10.664Z",
"redirects": [
{
"description": "",
"exampleUrl": "https://doom.fandom.com/wiki/Doom",
"exampleResult": "https://doomwiki.org/wiki/Doom",
"error": null,
"includePattern": "https://doom.fandom.com/wiki/*",
@wodim
wodim / redirects.user.js
Last active March 22, 2020 20:04
Script that redirects shitty sites to good sites
// ==UserScript==
// @name Redirects
// @author You
// @match *://*/*
// ==/UserScript==
(function() {
'use strict'
const redirections = new Map([
@wodim
wodim / twinstar.user.js
Created February 29, 2020 12:48
TwinStar
// ==UserScript==
// @name Twinstar
// @match http://*.twinstar.cz/*
// @match https://*.twinstar.cz/*
// ==/UserScript==
(function() {
'use strict';
var re = /https?:\/\/(www\.)?wowhead.com\//;
@wodim
wodim / settings.json
Created July 24, 2019 09:42
Settings for VSCode
{
"editor.fontSize": 13,
"editor.renderWhitespace": "boundary",
"files.trimTrailingWhitespace": true,
"editor.rulers": [
79
],
"git.enableSmartCommit": true,
"files.eol": "\n",
"[html]": {
@wodim
wodim / wodim
Created June 16, 2019 09:26
palette for mintty, like the original "mintty" but with a brighter Blue and Black
# config.c
Black = #444444
Red = #BF0000
Green = #00BF00
Yellow = #BFBF00
Blue = #5555BF
Magenta = #BF00BF
Cyan = #00BFBF
White = #BFBFBF
@wodim
wodim / underline.user.js
Created February 18, 2019 12:52
Userscript to underline all clickable stuff on all pages
// ==UserScript==
// @name Underline all links
// @match *://*/*
// ==/UserScript==
(function() {
'use strict';
var extra_css = document.createElement("style");
extra_css.innerHTML = 'a, input[type=submit], input[type=button], button, label { text-decoration: underline !important; }';
@wodim
wodim / automime.py
Created January 9, 2019 10:25
Adds a suitable extension to every file in the current folder
import mimetypes
import os
import sys
import magic
try:
dir = sys.argv[1]
except IndexError:
// ==UserScript==
// @name ProxyList
// @match https://www.sslproxies.org/
// ==/UserScript==
(function() {
'use strict';
var list = document.getElementsByTagName("td");
for (let item of list) {
// ==UserScript==
// @name Armory
// @match http://*.warmane.com/*
// @match https://*.warmane.com/*
// ==/UserScript==
(function() {
'use strict';
document.body.addEventListener('mousedown', function(el) {