You cannot post messages because only members can post, and you are not currently a member.
Description:
Discussions about development of the Greasemonkey extension for Firefox.
|
|
|
What can't you do, thanks to Greasemonkey's security sandbox?
|
| |
I'm finally starting work in earnest on Greasemonkey 1.0. The major change
is to move towards explicitly requesting access to the elevated privilege
APIs that Greasemonkey has historically exposed to user scripts and, more
importantly, _not_ imposing the convoluted security restrictions that make... more »
|
|
again window.setTimeout
|
| |
The same problem with time in window.setTimeout.
This work fine:
setTimeout(function(){alert("a aa");}, 1000);
setTimeout(function(){alert("a aa");}, 2000);
setTimeout(function(){alert("a aa");}, 3400);
but this not:
setTimeout(function(){alert("a aa");}, 3500);
setTimeout(function(){alert("a aa");}, 4000);... more »
|
|
google chrome
|
| |
any way to explain how i can add greasemonkey to chrome an if so
step by step i use alot of scripts an well tampermonkey doesnt handle
them at all does the mean i have to convert them to uft-8 an if so
whats the best converter two do this
|
|
window.setTimeout is not working properly
|
| |
I've been having a problem with window.setTimeout. It only seems to
work for low timeout values (up to about 4 seconds). With a longer
delay, the callback function is never run.
For example, try this script:
// ==UserScript==
// @name Timeout test
// @include *
// ==/UserScript==... more »
|
|
|