Greasy Fork is available in English.
Automatically add "contentType=study" to show all r###lt of Solutions in search page.
// ==UserScript== // @name Chegg Search Always See All // @namespace Chegg Search Always See All // @run-at start // @match *://www.chegg.com/search?* // @match *://www.chegg.com/search/* // @exclude *://www.chegg.com/*contentType=study* // @version 1.5 // @author uJZk // @description Automatically add "contentType=study" to show all r###lt of Solutions in search page. // @license MIT // ==/UserScript== if (document.location.href.indexOf("search?") > 0) { window.location.replace(document.location.href.replace(/https?:\/\/www\.chegg\.com\/search\?\S*?q=([\w+%]+)\S*/,"https://www.chegg.com/search?q=$1?contentType=study")); } else { window.location.replace(document.location.href.replace(/https?:\/\/www\.chegg\.com\/search\/([\w+%]+)/,"https://www.chegg.com/search/$1?contentType=study")); }