Greasy Fork

Greasy Fork is available in English.

IMDb2CL

Chercher la fiche CL d'une fiche IMDb

目前为 2020-04-05 提交的版本,查看 最新版本

// ==UserScript==
// @name        IMDb2CL
// @namespace   https://www.cinelounge.org/
// @description Chercher la fiche CL d'une fiche IMDb
// @author      tadanobu
// @match       https://*.imdb.com/title/tt*
// @version     1.3
// @grant       none
// ==/UserScript==
var adr = window.location.href.split('/tt');
if(adr[1].substr(7,1)=='/')
{
    var tt = adr[1].substr(0, 7);
}
else
{
    var tt = adr[1].substr(0, 8);
}
document.getElementById('titleYear').innerHTML += ' <a href=\'https://www.cinelounge.org/imdb2cl/' + tt + '\' target="_blank"><img src=\'https://www.cinelounge.org/images/logo.png\' style=\'vertical-align: middle; width: 20px;\' title=\'Fiche CinéLounge\' /></a>';