Greasy Fork is available in English.

StatusDetailLastLink

Adds a link for the Last Page on Status Detail pages.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        StatusDetailLastLink
// @namespace   https://greasyfork.org/en/users/6503-turk05022014
// @version     1.0.20180104
// @description Adds a link for the Last Page on Status Detail pages.
// @match       https://worker.mturk.com/status_details/*
// @grant       none
// ==/UserScript==
$(function () {
	pages = $(".mturk-pagination").parent().data().reactProps;
	addPages();
});
function addPages() {
	if (pages.lastPage > pages.currentPage) {
		var link = $(".mturk-pagination a:contains('Next')").attr("href").replace(/page_number=\d+/, "page_number="+pages.lastPage);
		$(".mturk-pagination li:contains('Next')").after('<li class="page-item text-only"><a class="page-link" href="'+link+'">Last ››</a></li>');
	}
}