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 …
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
Greasemonkey namespace..what is it for?
One place you can see the practical effect of namespaces is in storing preferences. Nampsaces are used to uniquely identify scripts for any script-specific stored preferences.
For example, …
