// ==UserScript==
// @name IMDb: add direct 'Highest Rated Titles With' links to person page
// @namespace https://greasyfork.org/en/users/8981-buzz
// @description This script adds two small but very practical links to the IMDb person detail page. It links directly to the film list by job type (director or actor), sorted by rating and shows only Feature films and TV Movies.
// @author buzz
// @require https://code.jquery.com/jquery-2.2.0.min.js
// @version 0.1
// @license GPLv2
// @match http://*.imdb.com/name/nm*
// @grant none
// @downloadURL none
// ==/UserScript==
/* jshint -W097 */
'use strict';
function addLink(job_type, imdb_id) {
var text = job_type.charAt(0).toUpperCase() + job_type.slice(1);
html = '' + text + ' | ';
$('.maindetails_center .rightcornerlink:first').prepend(html);
}
$(function($) {
var imdb_id;
var re = /^\/name\/(nm[0-9]{7})\//;
var m = re.exec(window.location.pathname);
if (m) {
imdb_id = m[1];
}
addLink('director', imdb_id);
addLink('actor', imdb_id);
});