Skip to main content
deleted 2 characters in body
Source Link
Mehper C. Palavuzlar
  • 14.7k
  • 20
  • 77
  • 94

There doesn't seem to be any way to save Google Image search preferences, even when logged in to Google, which is a bit strange. I would have thought this would be something that a lot of people would use.

Anyway, you could probably create a little piece of JavaScript and add to your toolbar as a bookmarklet to do this.

Something like this would work:

javascript:(function() { var searchTerm = prompt("Enter search term:",""); searchTerm = escape(searchTerm); var url = "http://www.google.co.ukcom/search?q=" + searchTerm + "&tbm=isch&hl=en&cr=&safe=images&orq=dog&tbs=isz:lt,islt:vga&biw=1280&bih="; window.location.href = url; })(); 

There doesn't seem to be any way to save Google Image search preferences, even when logged in to Google, which is a bit strange. I would have thought this would be something that a lot of people would use.

Anyway, you could probably create a little piece of JavaScript and add to your toolbar as a bookmarklet to do this.

Something like this would work:

javascript:(function() { var searchTerm = prompt("Enter search term:",""); searchTerm = escape(searchTerm); var url = "http://www.google.co.uk/search?q=" + searchTerm + "&tbm=isch&hl=en&cr=&safe=images&orq=dog&tbs=isz:lt,islt:vga&biw=1280&bih="; window.location.href = url; })(); 

There doesn't seem to be any way to save Google Image search preferences, even when logged in to Google, which is a bit strange. I would have thought this would be something that a lot of people would use.

Anyway, you could probably create a little piece of JavaScript and add to your toolbar as a bookmarklet to do this.

Something like this would work:

javascript:(function() { var searchTerm = prompt("Enter search term:",""); searchTerm = escape(searchTerm); var url = "http://www.google.com/search?q=" + searchTerm + "&tbm=isch&hl=en&cr=&safe=images&orq=dog&tbs=isz:lt,islt:vga&biw=1280&bih="; window.location.href = url; })(); 
Source Link
codingbadger
  • 16.9k
  • 3
  • 57
  • 91

There doesn't seem to be any way to save Google Image search preferences, even when logged in to Google, which is a bit strange. I would have thought this would be something that a lot of people would use.

Anyway, you could probably create a little piece of JavaScript and add to your toolbar as a bookmarklet to do this.

Something like this would work:

javascript:(function() { var searchTerm = prompt("Enter search term:",""); searchTerm = escape(searchTerm); var url = "http://www.google.co.uk/search?q=" + searchTerm + "&tbm=isch&hl=en&cr=&safe=images&orq=dog&tbs=isz:lt,islt:vga&biw=1280&bih="; window.location.href = url; })();