Search Results

1
vote
2answers
549 views

jQuery UI Dialog Throw Errors When Invoked from Greasemonkey

I'm getting this awkward error any time I try and create a dialog from Greasemonkey... I believe it has to do with the limitations of XPCNativeWrapper https://developer.mozilla.org/en/XPCNativeWrap …
1
vote

Debugging greasemonkey-like scripts

I've created an interactive console for debugging Greasemonkey scripts. It requires Google Gears, but it includes a persistent history of commands that were typed. UPDATE: …
0
votes

jQuery UI Dialog Throw Errors When Invoked from Greasemonkey

Here is one workaround, but there are still other less dramatic problems involved. // ==UserScript== // @name Dialog Test // @namespace http://strd6.com // @descripti …
0
votes

Can a Greasemonkey script override AdBlock filters?

What type of elements are you trying to access? Most of the page elements should still be available, just with 'display: none;'. I use jQuery in my Greasemonkey scripts and it is able to ge …
2
votes

launch an app to record keep with greasemonkey

I recommend using a webserver to gather the data. You can set up a domain or IP to send the data to. Just for starting out you could even run on localhost if you need to. The advantage is t …
0
votes

Reading the value of an input using XPath, then using in Greasemonkey

One possibility is to include jQuery in your scripts. This will provide a simpler syntax for accessing elements. // ==UserScript== // @name MyScript // @namespace htt …
1
vote

GreaseMonkey: How can I create an object of a class which defined in the remote page?

Here's how to do it: var _foo = eval('(' + unsafeWindow.foo.toSource() + ')'); var x = new _foo(); This workaround may be required due to the different security zo …
0
votes

A little help with DOM manip and GreaseMonkey

Writing JavaScript without a library is a hell I can never return to. Here is a script skeleton that enables jQuery: // ==UserScript== // @name MyScript // @namesp …
0
votes

Greasemonkey: Change text in a webpage?

// ==UserScript== // @name MyScript // @namespace http://example.com // @description Example // @include * // // @require http://ajax.googleapis.com/ajax/libs/j …
0
votes

Getting all nodes between the current node and another without current()?

You can use jQuery or another JavaScript framework to make working with the DOM easier. Example: // ==UserScript== // @name MyScript // @namespace http://exam …