Greasy Fork is available in English.
Chercher la fiche CL d'une fiche IMDb - Personnalités
当前为
// ==UserScript==
// @name IMDb2CL - Perso
// @namespace https://www.cinelounge.org/
// @description Chercher la fiche CL d'une fiche IMDb - Personnalités
// @include https://*.imdb.com/name/nm*
// @version 1.1
// @grant none
// ==/UserScript==
var adr = window.location.href.split('/nm');
var tt = adr[1].substr(0, 7);
document.getElementById('name-job-categories').innerHTML += '<br><a href=\'https://www.cinelounge.org/?page=imdb2clp&tt=' + tt + '\' target="_blank"><img src=\'https://www.cinelounge.org/images/logo.png\' style=\'padding-top: 10px; width: 20px;\' title=\'Fiche CinéLounge\' /></a>';