// ==UserScript==
// @name KG2CL
// @namespace https://www.cinelounge.org/
// @description Ouvrir une fiche CL depuis une fiche KG
// @author tadanobu
// @include https://karagarga.in/details.php?id=*
// @version 2.5
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @downloadURL none
// ==/UserScript==
$("td:contains(Internet Link)")
.next().text(function(){
if ($(this).text().indexOf("imdb") >= 0) {
if ($(this).text().indexOf("https") >= 0) {
var imdb = $(this).text().substr(29,8);
}
else {
var imdb = $(this).text().substr(28,8);
}
var title = $("h1").html().substring($("h1").html().lastIndexOf("-")+2,$("h1").html().lastIndexOf("(")-1).replaceAll(' ','_').replaceAll(/[^a-zA-Z0-9-_]/g, '');
$(this).html('
');
}
});