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 Improbable Quest Tracker | |
// @namespace http://www.shadedraco.com/improbablequests | |
// @include http://improbableisland.com/* | |
// @include http://www.improbableisland.com/* | |
// ==/UserScript== | |
var Content = document.evaluate("//td[@class='content']", document, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue; | |
if (Content) { |
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 Improbable Truancy Meter | |
// @namespace http://www.shadedraco.com/improbabletruancy | |
// @include http://improbableisland.com/* | |
// @include http://www.improbableisland.com/* | |
// ==/UserScript== | |
var CharInfo = document.evaluate("//table[@class='charinfo']", document, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue; | |
if (CharInfo) { | |
var LevelRow = document.evaluate("//td[@class='charinfo']/b/span[@class='colLtWhite'][text()='Level']/../../..", CharInfo, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue; |