Force Safari's Google Search to use IPv6

Does anyone know how to force the Google Search that is built in to Safari to go to
http://ipv6.google.com
instead of
http://www.google.com
Note: Glims has lots of features but it doesn't provide a way to modify the Google URL.

Note: Glims has lots of features but it doesn't provide a way to modify the Google URL.
Does something stop you from creating a new one as described at http://www.machangout.com/tutorials/addsearchengine ?
or I see, you maybe want to default google one to go there, rather than creating a new search option which of course can be pointed anywhere. It is possible to modify strings inside the safari app & change that. I'm sure Klaus here has linked to it before.

Similar Messages

  • I just installed ios8 on my ipad3 and now I can't exit out of the last search using Safari and Google search

    I Installed ios8 then iOS 8.02 on iPad 3. Now when I use Safari and Google search I can't exit out of the last site visited. It seems that all the sites are saved. Help. When I go to use Safari the next time the last site visited is always there. I want to be able exit those sites every time exit from Safari

    Safari works a little differently in that respect on iOS 8 on the iPad than it did before. To exit the last site used, tap the icon that looks like 2 overlapping pages at the top right of the screen and then tap the x at the top left of the smaller display that appears.

  • Safari's Google-search bar in Dutch ***?!?!

    I have a Macbook pro, Lion all up tp date, and recently I discovered that when I use Safari's google search bar it uses the Dutch google (i.e. goole.nl). I haven't changed any settings.
    I am in China atm, but have a UK VPN and even when I've just been connected to the Chinese server in the past, I haven't ha any problems.
    I did a software update earlier (it was regarding security) and I think it somehow changed a setting. Can anyone shed any light on this?

    Ok I think I figured it out myself... no need to answer

  • How do I force safari to open pdf files using Adobe???

    How do I force safari to open pdf files using Adobe and not in the browser?

    You need Acrobat Reader as a Safari plug in.
    http://get.adobe.com/reader/

  • Changing Safari's google search bar

    is there any way to change safari's google search bar to another search engine... there's a charity that will donate every time i search with their yahoo fueled search engine and i want to get it in my browser as the default.
    is it possible?

    Try the instructions in this article.
    (18948)

  • When I type in a name in the Google Search Bar using the Classic Home Page, nothing happens, i.e, type in the word BASEBALL, then hit ENTER, and nothing happens

    When I type in a name in the Google Search Bar using the Classic Home Page, nothing happens. For example, if I type in the name BASEBALL, and then hit ENTER, nothing happens. This just started today.

    I had a "typo." It is supposed to say........
    www.google.com/firefox?client=firefox-acrls=org.mozilla:en-us:official

  • Blank popup in safari after google search

    Can someone tell me why I get this popoup everytime I submit a search via the built-in google search field in Safari?
    And, more importantly, how I can I get rid of it?
    This started happenning not long after the upgrade to Lion.
    Thanks!
    J

    My girlfriend's computer is having the same issue.  We tried those steps last night, to no avail.  She is generally a safe and savy internet user, and never downloads files.
    A temporary fix has been to use the Safari Block Pop-Ups option, but obviously the concern is that whatever is causing this is still running, even if we can't see it.
    Any help or insight would be greatly appreciated.  When I get home this evening I will edit in full details of her system.

  • Safari and google search

    Hi Guys
    I have strange problem with searching google with Safari.
    Try to search any thing you want, I will call it "Search string 1" and feel free to click on any link then go back to the your google search page either by pressing back button or the gesture. Now try to do the same thing with another search criteria which I call it "Search String 2".
    NOW here is the problem:
    When you click on any result for "Search string 2" and go back to your google search page, you will see the  "Search string 1" in the google search textbox BUT the results are for "Search string 2".
    Very wired.
    any idea??
    Thank you

    That's nice my post helps resolving your problem.
    How is... actually I don't know exactly.
    But we (I mean Japanese) always have got problem with functions which automatically do something during typing.
    We always need change word from how I type to how I want by IME(Input Method Editor) because we have 3 different type of characters.
    (see this Youtube if you have a time, maybe you could imagine what I talk about. http://www.youtube.com/watch?v=LYVKT-TWB8A)
    So that kind of functions are really difficult to apply for Japanese services.
    And I have experience trying early beta of Google Instant Search, and remember that behavior was awful for Japanese. (now much better)
    Then I've got this problem, that idea suddenly crossed me which the cause of problem might be Google Instant Search, JavaScript for the search might be cause something bad for BACK operation.
    Just like that.

  • Does Google Search (app) use location services

    Does Location Services use data for Google Search and other apps that use my location

    Hi
    Location services will use data yes, you should be able to see the apps using loaction services under settings>privacy>loaction services and then turn off or on apps you which to use with this service from there
    See this too:
    http://support.apple.com/kb/HT5594
    Hope this helps

  • Google search api using c#

    hello 
    i want to deal with google search api to return a list of url.
    like i want to search for the word : mobile
    so it will return to me a list of all the url would appear in google.com
    just the url ... I didn't use google search api before 
    so any one can help me ?
    note : i need it in c# language.
    note 2 : i need all the url that appear in search.

    Hi
    Samy,
    Like your title mentioned, your case related to google search api. This is the third-party Api.
    I am afraid this is out of our support.  Please ask in their special forum. Here is the link:https://developers.google.com/places/forum
    Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to interact with google search engine using java HTTP POST

    I am trying to develop an desktop app that acts as an online radio tuner. I want to use google as an index site for actually searching for radio stations online. So I was wandering if it is possible for me to use java to actually interface with the google search engine servers. For example, I have built a gui that allows you to enter search text. This gui will connect to the web. I would like it to connect to the Google site and post the query to the google web servers. Then i would like to began to parse the response( html page) that i get back from the google servers. Like using google without actually typing in the text field on the google site. Can anyone tell me if it is possible to do this with java. If so, what would be the best way to go about doing this. Thanks.

    Thanks for the response. It was actually alot easier to do than I anticipated. All I had to do was create a URL object initialized with the google url(search text embedded in the url - http://www.google.com/search?q=" + searchText + "&hl=en&ie=UTF-8&oe=UTF8).
    Looks like this:
    String google = http://www.google.com/search?q=" + searchText + "&hl=en&ie=UTF-8&oe=UTF8;
    URL url = new URL(google);  // creating Google Url object
    URLConnection connection = url.openConnection();
           connection.setDoOutput(true);
           connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" );  // fooling google servers into thinking the request is coming from a real browser
           BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));The content returned by the google server can be accessed calling the BufferedReader class methods.

  • How can I turn off Safari's Google search auto complete off ?

    I do know if I am using the right word, so I will post the picture
    When you type something in the search bar, Google will automatically complete it for you. It's very annoying to me, how can I turn it off?

    Go to Safari in the menu bar/Preferences/Privacy last check box, Smart Search Field, Prevent search engine from providing suggestions.
    PJRS

  • Red blue yellow lines in safari under Google search links

    when I look up something on Google under each link I see red yellow blue colors in safari it's really annoying how do I turn it off

    It's hard to tell without a screenshot, but this may be font substitution by a bad font. If you have added fonts to your system with a CYR or SLAV in their name, try removing them.

  • Google search problem in safari

    I went to do a google search and used the window in Safari. When I hit go, I get results but they look strange. Only the search term and then most of it is blank. It's as if the page is so big that I can't see the rest.  When I go to the bottom of the page it says Mobile, but nothing else. When I tap beside it, it went to a "classic" view as if on the desktop of your computer, but then I could not see what I was typing in the search box. It was invisible. No problem with Bing or Yahoo.
    I also have noticed on a page that I normally check that the login button was not there. I could click where the login button usually is and then it will take me to the page, but what I type is also invisible.
    I have an iPhone 4s 5.1.1. No problems on my husbands iPhone 4s.
    Will try to restore.
    Has this happened to anyone?

    Restore has fixed it.

  • Tiger upgrade, probs w/ Safari accessing Google pages etc.

    after my easy Tiger upgrade, i now experience a huge degradation of response time -- up to several minutes and sometimes unable to connect to my customized Google homepage with Safari. same is true using Safari's Google search box -- searches hang for minutes before connecting or don't connect. any ideas of what setting got changed or what i need to tweak? no problem with Firefox or IE. thx, diane

    Same issue...grrrr.

Maybe you are looking for