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 Add _blank to StackExchange\StackOverflow\Others | |
// @description Open StackExchange\StackOverflow\Other links in a new tab | |
// @namespace https://rawgit.com/rabel001/userscripts/master/superStackOverEx.js | |
// @updateURL https://rawgit.com/rabel001/userscripts/master/superStackOverEx.js | |
// @downloadURL https://rawgit.com/rabel001/userscripts/master/superStackOverEx.js | |
// @version 1.00 | |
// @author rabel001 | |
// @include *superuser.com* | |
// @include *askubuntu.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
// ==UserScript== | |
// @name Google Video Grid | |
// @author rabel00l | |
// @namespace https://github.com/rabel001 | |
// @description Change Google Video Page to Grid using gridstack.js | |
// @include *google.com/search*&tbm=vid&* | |
// @grant none | |
// ==/UserScript== | |
(() => { |
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 Wikiwand Cleanup | |
// @author rabel001 | |
// @description Removes reference links, changes link color to black, and delete unsightly elements | |
// @include *wikiwand.com* | |
// @grant none | |
// ==/UserScript== | |
window.checkjQuery = setInterval(() => { | |
if (window.location.pathname !== "/") { |
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
#SingleInstance, force | |
SetTitleMatchMode 2 | |
SetKeyDelay, 10, 10 | |
SetBatchLines, -1 | |
;--------------------------------------------------------------------------- | |
; Button Library found at https://github.com/AHK-just-me/Class_ImageButton | |
;--------------------------------------------------------------------------- | |
;#Include ..\lib\Class_ImageButton.ahk | |
#Include <Class_ImageButton> |
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
#SingleInstance Force | |
list = 10.20.12.6|SERVER19|AGENT2|The Red Server|98.67.8.0|Blue Server|GALAXY01|A Code Box|PRIME01|SECERTSV01|125.76.8.4|LUQUID10|VENUS04|The Azure Server|An Apple TV | |
Sort, list, F Compare D| | |
Compare( a , b ) | |
{ | |
arem := RegExReplace(a, ")The |the |A |a |An |an " , "" ) | |
brem := RegExReplace(b, ")The |the |A |a |An |an " , "" ) | |
return arem > brem ? 1 : arem < brem ? -1 : 0 | |
} |