IMDb2CL - Perso

Chercher la fiche CL d'une fiche IMDb - Personnalités

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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*
// @icon        https://www.cinelounge.org/images/logot.png
// @version     1.7
// @require      https://code.jquery.com/jquery-3.5.1.min.js
// @grant       none
// ==/UserScript==
var adr = window.location.href.split('/nm');
if(adr[1].substr(7,1)=='/')
{
    var tt = adr[1].substr(0, 7);
}
else
{
    var tt = adr[1].substr(0, 8);
}
var h1s = document.getElementsByTagName("h1");
for (var i = 0; i < h1s.length; i++) {
    var h1 = h1s[i];
    h1.innerHTML += ' <a href=\'https://www.cinelounge.org/imdb2clp/' + tt + '\' target="_blank"><img src=\'https://www.cinelounge.org/images/logo.png\' style=\'padding-top: 10px; width: 20px;\' title=\'Fiche CinéLounge\' /></a>';
}