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
| var bStrm = new ActiveXObject("Adodb.Stream"); | |
| var wShell = new ActiveXObject("Wscript.Shell"); | |
| var fso = new ActiveXObject("Scripting.FileSystemObject"); | |
| var ForReading = 1, ForWriting = 2, ForAppending = 8; | |
| var TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0; | |
| var debug = false; |
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
| if (typeof XMLHttpRequest == "undefined") | |
| XMLHttpRequest = function () { | |
| try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } | |
| catch (e) {} | |
| try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } | |
| catch (e) {} | |
| try { return new ActiveXObject("Msxml2.XMLHTTP"); } | |
| catch (e) {} | |
| //Microsoft.XMLHTTP points to Msxml2.XMLHTTP.3.0 and is redundant | |
| throw new Error("This browser does not support XMLHttpRequest."); |
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 wikiHow Plus | |
| // @namespace http://www.wikihow.com | |
| // @description Does nifty stuff on wikiHow, like autowelcome. | |
| // @include http://*wikihow.com/* | |
| // @version 0.2 | |
| // ==/UserScript== | |
| // Options: | |
| // - Plus - |
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
| /* | |
| Create HTML | |
| Code: Ilias Ismanalijev | |
| Arlo Rose | |
| */ | |
| var isCS2 = (app.version.split(".")[0] > 8) ? true : false; | |
| var nonNormalAlert = false; | |
| function makeDialog(htmlInfo) | |
| { |
NewerOlder