Jump to content
UBot Underground

Shan

Fellow UBotter
  • Content Count

    14
  • Joined

  • Last visited

Posts posted by Shan

  1. How do you do you disable / change it with the native FF browser? Exbrowser is a remote control. It doesn't change the browser at all. We don't add features to the browser or change it's behavior. 

    We just remote control it. 

     

    If you can do it natively with the browser, we might be able to automate it. If you can't do it natively with the browser, we can't do it with ExBrowser.

     

    So how do you change / disable that screen / page when you launch a freshly installed (clean profile) FF browser?

     

    Dan

     

    Thanks very much, Dan!

     

    Now I unserstand how the plugin works :)

     

    I decide to use firefox 41 for my project, though the "exbrowser alive" function always show false with this version. I will change some peaces of code to get the same results.

     

    After sitting on my chair and spending nearly 2 hours to read the whole entire thread again, I am more familiar with Exbrowser plugin now. 

     

    I have to say the Exbrowser performs much better in specific circumstances than the Ubot browser, beacause I can choose Firefox, Chrome and PhantonJS for different purposes.

     

    This is my first ubot plugin, although I am bot a big fan of plugins, but this one really makes me happy. :P

  2. Could anyone help me disable the firefox first run page?

     

    When I luanch firefox using Exbrowser it always load the first run page, quite annoying!

     

    I tried firefox version 42 and 43, both of them load the first run page when firefox is launched.

     

    The older verions show a blank page and I like it, but the Ebrowser function $Exbrowser browser alive doesn't work and always get false value.

     

    BTW, can I launch a portable firefox which is located somewhere else?

     

    Thanks very much!

    post-10022-0-32325100-1452417758_thumb.jpg

  3. You can do that with Javascript already:

     

    plugin command("Communication.dll""CBrowser Container""Chrome""""") {

        plugin command("Communication.dll""CBrowser Navigate""http://www.google.com")

        plugin command("Communication.dll""CBrowser Wait For Dom Ready", 30)

        plugin command("Communication.dll""CBrowser Run Javascript""function goTo(url)

    \{

        var a = document.createElement(\"a\");

        if(!a.click) //for IE

        \{

             window.location = url;

             return;

        \}

        a.setAttribute(\"href\", url);

        a.style.display = \"none\";

        document.body.appendChild(a);

        a.click();

    \}

     

    goTo(\"http://www.ebay.com\");")

        plugin command("Communication.dll""CBrowser Wait For Dom Ready", 30)

        alert("x")

    }

     

     

    Regards

    Dan

     

    Thanks very much, Dan!

     

    I am a noob to JavaScript, but I will try to figure it out with your method:)

     

    After testing, it works, thanks again!

  4. Just purchased this neat plugin. It's my very first plugin since I was not a heavy Ubot user and didn't invest on other plugins, I really love it. Being able to automate with external browsers opens a door for me to do more things with Ubot, and this is the most useful feature to me right now.

     

    I highly recommend anyone who is new to Ubot to get this cool plugin while there is a coupon code.

     

    After playing it for a while, I didn't find any command that can change the referer as I need. Do you guys have some methods to fake the referer in the external browsers? If yes, would you please show me how to handle this? If not, I would suggest you adding this feature in the future update!

  5. I have got the source code from Daniel, realy fast delivery, I would like to do a short review.

     

    First thing I want to say is that the source code is worth the money.

     

    I am a Ubot fresh man, I have watched most of the ubot tutorials, I can make simple bots now, but I want to improve my skill to next level and mak more complicated and efficient bots, sometimes it was really frustrated because I don't have program background and my mind was limited.

     

     

    After watching two video tutorials with the source code, my mind was opened, it definitely saves me a lot of time to study ubot deeply. I got some source code from somewhere else, but compared with this one, I have to say Daniel's code is smarter, more clear and efficient.

     

    In my opinion, it will shorten your learning curve, but you also should watch other Ubot toturials first.

     

    So that's my review, from a Ubot newbie, if you are the same as me, I suggest you get this code, at least it will save you a lot of time, time is money, right?

×
×
  • Create New...