• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

How to scarp SERP?

q1787885

New member
Mar 19, 2019
6
0
1
Hello guys,
Is there any working way to scarp SERP urls form Google / Bing / Duckduckgo?
 
1. Go into your google settings on the google search results page and change the setting to show 100 search results
2. Press Control +D to bookmark the page
3. Open your bookmarks, find the bookmark that you just created, right click it and press edit
4. Replace the URL with the following Javascript and press save when finished.
This bookmark will now scrap the URLs direct from the search results into a new tab as a list

Javascript to copy
javascript:var a = document.getElementsByTagName('a'), arr = '';for(var i=0; i<a.length; i++) if (a.ping && !a.href.includes('google'))arr +=('<p>' + a.href + '</p>');var newWindow = window.open();newWindow.document.write(arr);newWindow.document.close()
 
  • Like
Reactions: q1787885
1. Go into your google settings on the google search results page and change the setting to show 100 search results
2. Press Control +D to bookmark the page
3. Open your bookmarks, find the bookmark that you just created, right click it and press edit
4. Replace the URL with the following Javascript and press save when finished.
This bookmark will now scrap the URLs direct from the search results into a new tab as a list

Javascript to copy
javascript:var a = document.getElementsByTagName('a'), arr = '';for(var i=0; i<a.length; i++) if (a.ping && !a.href.includes('google'))arr +=('<p>' + a.href + '</p>');var newWindow = window.open();newWindow.document.write(arr);newWindow.document.close()
Hey, i checked it and it's only open new blank window. Can you tell me what i did wrong?
 
I kinda changed the code and it works.

JavaScript:
var arr = [], l = document.links;
for(var i=0; i<l.length; i++) {
  if (!l[i].href.includes('google')){
      arr.push(l[i].href);
  }
}
var newWindow = window.open();newWindow.document.write(arr);newWindow.document.close()
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock