Недавний контент zactyson64

  1. Z

    Bugs in version 7.7.7.0

    The CPU load for the Chromium has been getting worse and worse with each release, why can't it match the normal Chrome usage (CEF)? The last release on which the Chromium browser had an acceptable performance (even though it's still bad compared to normal Chrome) is 7.7.3.0. Memory leak still...
  2. Z

    Run multiple threads, and the first one to open the site makes all the others stop running. Help

    you can write some line in a file and check if the line is there, if it's there then pause, one of the threads will be the fastest to write the line and all other threads will see the line already there so they won't continue
  3. Z

    A question about accessing a running instance

    Yeah I thought so too, but I had some hope when I noticed each instance has a unique port number
  4. Z

    A question about accessing a running instance

    Hello, is it possible to access an instance (chrome browser) that is currently running from a different network? If yes how can I set it up?
  5. Z

    Discussion - new version 7.7.4.0

    Not only that, they actually introduced many new bugs, chromium is unusable, I rolled back immediately and it works again, very sad,,,
  6. Z

    Обсуждение версии 7.7.3.0

    точный
  7. Z

    How to edit browser's Local Storage

    I found the solution, I will keep this up if someone else wanted to know, I used JS cube and executed the following line of code on the page where I want the values to be added localStorage.setItem('key', 'value');
  8. Z

    How to edit browser's Local Storage

    Hello, I'm trying to add values to the Local Storage of an instance but I can't find any documentation about it, is it possible?
  9. Z

    instance.UseTrafficMonitoring = true;

    instance.UseTrafficMonitoring=true; instance.ActiveTab.Navigate("https://www.example.com"); if (instance.ActiveTab.IsBusy) instance.ActiveTab.WaitDownloading(); var list = instance.ActiveTab.GetTraffic(); string ob = ""; foreach(var t in list) if(t.ResponseBody != null)...
  10. Z

    instance.UseTrafficMonitoring = true;

    It's a bug, what I think would work for you is if you navigate to your desired URL then get traffic in the same cube, this always returns the traffic, if it doesn't then execute the same cube again and it's basically 100% success rate but if you try to go to a URL in a cube then in another cube...
  11. Z

    Problem with Leaf.xNet and ZennoPoster

    Just tested with ZennoPoster V5 and it works.. the problem is a bug in V7 only
  12. Z

    Problem with Leaf.xNet and ZennoPoster

  13. Z

    Problem with Leaf.xNet and ZennoPoster

    Hello, I'm trying to randomize my SSL fingerprint with requests using Leaf.xNet in ZennoPoster but it's not working as indented even though the same code works perfectly fine in Visual Studio, here's the code I'm using var req = new Leaf.xNet.HttpRequest(); var SslProvider =...
  14. Z

    Alternative HTTP method on certain requests

    Add ability to use alternative HTTP method on certain requests only, current implementation makes it used across all requests
  15. Z

    Project Maker 7.7.3.0 Tab doesn't auto complete

    Pressing tab to auto complete would save me a lot of time when typing variables names or anything in general so it would be really useful to have it. Is there a replacement to the tab key behavior on the new interface?