Search Results

6
votes

Accessing Greasemonkey metadata from within your script?

Yes. A very simple example is: var metadata=<> // ==UserScript== // @name Reading metadata // @namespace http://www.afunamatata.com/greasemonkey/ // @descripti …
0
votes

Accessing created DOM elements

var input1 = $( 'input[name="lp_name_1"]').clone(true); should be var input1 = $( 'input[@name="lp_name_1"]').clone(true); Try that first …
2
votes

JavaScript/Greasemonkey: Avoiding FireFox Security Warning when Submitting a Form from a Secure Page

This may be possible by doing a GM_xmlhttpRequest. e.g., GM_xmlhttpRequest({ method: 'POST', url: 'http://your.insecure.site.here', onload: function(details) { // look …
1
vote

A little help with DOM manip and GreaseMonkey

Here's a pure-DOM method of the above -- and for kicks, I played with the extraction of the username as well: var menuNode = document.getElementById('tabMenu'); if (menuNode!=null) …
1
vote

Debugging javascript in Safari for Windows

Have you tried Firebug Lite? http://getfirebug.com/lite.html …