// ==UserScript== // @name KGBrowse2CL // @namespace https://www.cinelounge.org/ // @description Ouvrir une fiche CL depuis la navigation sur KG // @author tadanobu // @include https://karagarga.in/browse.php // @include https://karagarga.in/bookmarks.php // @include https://karagarga.in/history.php* // @version 1.03 // @grant none // @require http://code.jquery.com/jquery-3.3.1.min.js // @license MIT // @downloadURL none // ==/UserScript== $('a').each(function() { if ($(this).is('[href*="imdb"')) { if ($(this).attr('href').indexOf("https") >= 0) { var imdb = $(this).attr('href').substr(29,8); } else { var imdb = $(this).attr('href').substr(28,8); } $(this).before(' '); } });