// ==UserScript== // @name TMDb2CL // @namespace https://www.cinelounge.org/ // @description Chercher la fiche CL d'une fiche TMDb // @author tadanobu // @version 1.0 // @grant none // @icon https://www.cinelounge.org/images/logot.png // @require https://code.jquery.com/jquery-3.5.1.min.js // @include https://www.themoviedb.org/movie/*-* // @license MIT // @downloadURL none // ==/UserScript== window.addEventListener('load', showCL); function showCL() { var movie_id = document.URL.split("/").pop().split("-")[0]; var h1s = document.getElementsByClassName("release_date"); for (var i = 0; i < h1s.length; i++) { var h1 = h1s[i]; h1.innerHTML += ' '; } }