ClassicAllHITsLink

Changes All HITs link back to the classic search results.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        ClassicAllHITsLink
// @description Changes All HITs link back to the classic search results.
//              All HITs link will go to https://worker.mturk.com/projects?filters[qualified]=false&filters[masters]=false&sort=num_hits_desc&filters[min_reward]=0
// @namespace   https://greasyfork.org/en/users/6503-turk05022014
// @match       https://worker.mturk.com/*
// @require     http://code.jquery.com/jquery-latest.min.js
// @version     1.0.20180113
// @grant       none
// ==/UserScript==
this.$ = this.jQuery = jQuery.noConflict(true);
var newURL = "https://worker.mturk.com/projects?filters[qualified]=false&filters[masters]=false&sort=num_hits_desc&filters[min_reward]=0";
$(function (){
	var allHits = $('a.nav-link:contains("All HITs")');
	allHits.attr('href', newURL);
});