Hidden features of Greasemonkey - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T13:36:03Zhttp://stackoverflow.com/feeds/question/121167http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey5Hidden features of GreasemonkeyChris Noe2008-09-23T13:59:36Z2009-03-19T23:49:02Z
<p>What are some of the lesser-known but useful features and techniques that people are using in their Greasemonkey scripts?</p>
<p>(Please, just one feature per answer.)</p>
<p>Similar threads:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden Features of JavaScript</a></li>
<li><a href="http://beta.stackoverflow.com/questions/15496/hidden-features-of-java" rel="nofollow">Hidden Features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden Features of C++</a></li>
<li><a href="http://beta.stackoverflow.com/questions/9033/hidden-features-of-c" rel="nofollow">Hidden Features of C#</a></li>
</ul>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/121197#1211975Answer by Chris Noe for Hidden features of GreasemonkeyChris Noe2008-09-23T14:06:37Z2008-09-23T14:06:37Z<p>Data can be persisted across page loads by storing it as a mozilla preference value via <code>GM_setValue(keyname, value)</code>.</p>
<p>Here is a simple example that tallys the number of times your script has been executed - by a given browser:</p>
<pre>
var od = GM_getValue("odometer", 0);
od++;
GM_setValue("odometer", od);
GM_log("odometer=" + od);
</pre>
<p>GM values are analogous to cookies in that cookie values can only be accessed by the originated domain, GM values can only be accessed by the script that created them.</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/121327#1213273Answer by Chris Noe for Hidden features of GreasemonkeyChris Noe2008-09-23T14:27:16Z2008-09-23T14:27:16Z<p>Anonymous statistics</p>
<p>Assuming you have a basic hosting service that provides access logging, you can easily track basic usage statistics for your script.</p>
<ol>
<li>Place a gif file (eg, a logo image) on your own website.</li>
<li>In your script, attach an img element to the page that references the gif:</li>
</ol>
<pre>
var img = document.createElement("img");
img.src = "http://mysite.com/logo.gif";
document.body.appendChild(img);
</pre>
<p>Now, each time a user executes your script, your hosting service will register a hit on that gif file.</p>
<p>To track more than one script, use a different gif file for each. Or add some kind of differentiating parameter to the URL, (eg: <code>http://mysite.com/logo.gif?zippyver=1.0</code>).</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/121601#1216016Answer by Robert J. Walker for Hidden features of GreasemonkeyRobert J. Walker2008-09-23T15:06:50Z2008-09-23T15:06:50Z<p>Greasemonkey scripts often need to search for content on a page. Instead of digging through the DOM, try using XPath to locate nodes of interest. The <code>document.evaluate()</code> method lets you provide an XPath expression and will return a collection of matching nodes. Here's a nice <a href="http://www-xray.ast.cam.ac.uk/~jgraham/mozilla/xpath-tutorial.html" rel="nofollow">tutorial</a> to get you started. As an example, here's a script I wrote that causes links in phpBB3 posts to open in a new tab (in the default skin):</p>
<pre><code>// ==UserScript==
// @name New Tab in phpBB3
// @namespace http://robert.walkertribe.com/
// @description Makes links in posts in phpBB3 boards open new tabs.
// ==/UserScript==
var newWin = function(ev) {
var win = window.open(ev.target.href);
if (win) ev.preventDefault();
};
var links = document.evaluate(
"//div[@class='content']//a[not(@onclick) and not(@href='#')]",
document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i < links.snapshotLength; i++) {
var link = links.snapshotItem(i);
link.addEventListener("click", newWin, true);
}
</code></pre>
<p>The XPath expression used in the code identifies all <code>a</code> elements that 1) do not have an <code>onclick</code> attribute, 2) whose <code>href</code> attribute is not set to <code>"#"</code>, and 3) are found inside <code>div</code>s whose <code>class</code> attribute is set to <code>"content"</code>.</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/125006#1250061Answer by Chris Noe for Hidden features of GreasemonkeyChris Noe2008-09-24T02:07:21Z2008-09-24T02:07:21Z<p>Script header values, (@name, @description, @version, etc), can be made retrievable. This is preferable to maintaining the same constant values in multiple places in your script.</p>
<p>See <a href="http://stackoverflow.com/questions/104568/accessing-greasemonkey-metadata-from-within-your-script#112148">Accessing Greasemonkey metadata from within your script?</a></p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/127901#1279014Answer by Chris Noe for Hidden features of GreasemonkeyChris Noe2008-09-24T15:31:44Z2008-09-24T15:31:44Z<p>Your script can add graphics into a page, even if you don't have any place to host files, via data URIs.</p>
<p>For example, here is a little button graphic:</p>
<pre>
var button = document.createElement("img");
button.src = "data:image/gif;base64,"
+ "R0lGODlhEAAQAKEDAAAA/wAAAMzMzP///yH5BAEAAAMALAAAAAAQABAAAAIhnI+pywOtwINHTmpvy3rx"
+ "nnABlAUCKZkYoGItJZzUTCMFACH+H09wdGltaXplZCBieSBVbGVhZCBTbWFydFNhdmVyIQAAOw=="
somenode.appendChild(button);
</pre>
<p>Here is an online <a href="http://www.scalora.org/projects/uriencoder/" rel="nofollow">image encoder</a>.</p>
<p>And a <a href="http://en.wikipedia.org/wiki/Data:_URI_scheme" rel="nofollow">wikipedia article</a> about the Data URI standard.</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/133560#1335601Answer by Chris Noe for Hidden features of GreasemonkeyChris Noe2008-09-25T14:09:35Z2008-09-25T14:09:35Z<p>A useful XPath technique is to specify your match relative to a node that you have already found. As a contrived example for stackoverflow:</p>
<pre>
// first we got the username link at the top of the page
var hdrdiv = document.evaluate(
"//div[@id='headerlinks']/a[1]", document, null,
XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
// now we can retrieve text that follows it, (user's reputation score)
// (note that hdrdiv is now the contextNode argument, rather than document)
var reptext = document.evaluate(
"following-sibling::span", hdrdiv, null,
XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
alert("Reputation Score: " + reptext.textContent);
</pre>
<p>You can match in any direction relative to the contextNode, ancestors, descendants, previous, following.
Here is a helpful
<a href="http://zvon.org/xxl/XSLTreference/Output/index.html" rel="nofollow">XPath reference</a>.</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/137077#1370772Answer by Sam Hasler for Hidden features of GreasemonkeySam Hasler2008-09-26T00:20:37Z2008-09-26T00:20:37Z<p>GreaseMonkey scripts run when the DOM is ready, so you don't need to add onload events, you just start manipulating the DOM straight away in your GreaseMonkey script.</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/144415#14441510Answer by mislav for Hidden features of Greasemonkeymislav2008-09-27T20:34:26Z2008-09-27T20:34:26Z<pre><code>==UserScript==
...
@require http://ajax.googleapis.com/ajax/framework-of-your/choice.js
==/UserScript==
</code></pre>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/664485#6644852Answer by Paul Marshall for Hidden features of GreasemonkeyPaul Marshall2009-03-19T23:49:02Z2009-03-19T23:49:02Z<p>GM_setValue normally only stores 32-bit integers, strings, and booleans, but you can take advantage of the uneval() method (and a later eval() on retrieval) to store any object.</p>
<pre><code>var foo={people:['Bob','George','Smith','Grognak the Destroyer'],pie:true};
GM_setValue('myVeryOwnFoo',uneval(foo));
var fooReborn=eval(GM_getValue('myVeryOwnFoo','new Object()'));
GM_log('People: '+fooReborn.people+' Pie:'+fooReborn.pie);
</code></pre>
<p>I tend to use "new Object()" as my default in this case, but you could also use "({})". Just remember that "{}" evaluates as a string, not an object. As usual, eval() with care.</p>