This file contains 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 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")) { |
This file contains 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
{ | |
"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/*", |
This file contains 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 Redirects | |
// @author You | |
// @match *://*/* | |
// ==/UserScript== | |
(function() { | |
'use strict' | |
const redirections = new Map([ |
This file contains 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 Twinstar | |
// @match http://*.twinstar.cz/* | |
// @match https://*.twinstar.cz/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var re = /https?:\/\/(www\.)?wowhead.com\//; |
This file contains 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
{ | |
"editor.fontSize": 13, | |
"editor.renderWhitespace": "boundary", | |
"files.trimTrailingWhitespace": true, | |
"editor.rulers": [ | |
79 | |
], | |
"git.enableSmartCommit": true, | |
"files.eol": "\n", | |
"[html]": { |
This file contains 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
# config.c | |
Black = #444444 | |
Red = #BF0000 | |
Green = #00BF00 | |
Yellow = #BFBF00 | |
Blue = #5555BF | |
Magenta = #BF00BF | |
Cyan = #00BFBF | |
White = #BFBFBF |
This file contains 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 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; }'; |
This file contains 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 mimetypes | |
import os | |
import sys | |
import magic | |
try: | |
dir = sys.argv[1] | |
except IndexError: |
This file contains 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 ProxyList | |
// @match https://www.sslproxies.org/ | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var list = document.getElementsByTagName("td"); | |
for (let item of list) { |
This file contains 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 Armory | |
// @match http://*.warmane.com/* | |
// @match https://*.warmane.com/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.body.addEventListener('mousedown', function(el) { |
NewerOlder