Greasy Fork

Greasy Fork is available in English.

IMDb2CL

Chercher la fiche CL d'une fiche IMDb

目前为 2017-06-16 提交的版本,查看 最新版本

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