frantic wrote:
> 
> 
> Can I hide greasemonkey to the website i "modify" with grasemonkey's
> scripts?
> 
> I think the webadmin can recognize if I use grasemonkey's scripts on
> his site...how can i avoid it?
> Thanks a lot.
> 
> Bye.
> 
> 
> --~--~---------~--~----~------------~-------~--~----~
> You received this message because you are subscribed to the Google Groups
> "greasemonkey-users" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/greasemonkey-users?hl=en
> -~----------~----~----~----~------~----~------~--~---
> 
> 
> 
SHU uses this to keep the game from detecting its presence..
 
        var allScript = document.getElementsByTagName('script');
        // For each <script> tag
        for (var i = 0; i < allScript.length; i++) {
                var thisScript = allScript[i];
                var re = /function (.+)\(\) \{ 
if\(document\.body\.innerHTML\.indexOf/;
                var thisMatch = re.exec(thisScript.innerHTML);
                
                if (thisScript.innerHTML.match(re)) {
                        unsafeWindow[thisMatch[1]] = function() {};             
        
                }
        }
-- 
View this message in context: 
http://old.nabble.com/Can-I-hide-greasemonkey--tp10602545p27198582.html
Sent from the GreaseMonkey List mailing list archive at Nabble.com.

-- 
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/greasemonkey-users?hl=en.


Reply via email to