您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically add "contentType=study" to show all result 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 result 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")); }