Please bring back 100 search results per page functionality
Yet another sterling example of why change is usually bad. Why did Firefox, Google and other browsers (though don't know about Duck Duck Go) drop the 100 results per page option? I've always had that enabled and now that it was removed it makes searching extremely tedious and time wasting. Please offer a SIMPLE AND QUICK way to restore this option ASAP. Thank you.
Yet another sterling example of why change is usually bad. Why did Firefox, Google and other browsers (though don't know about Duck Duck Go) drop the 100 results per page option? I've always had that enabled and now that it was removed it makes searching extremely tedious and time wasting. Please offer a SIMPLE AND QUICK way to restore this option ASAP. Thank you.
Toate răspunsurile (2)
You can add the "&num=100" parameter to the URL. There is also the '&udm=14' to disable AI.
Modificat în
Possible bookmarklet:
javascript:(function() {let url = new URL(window.location.href);if (!url.searchParams.has('num')) {url.searchParams.set('num', '100');window.location.replace(url.href);}})();