Greasy Fork is available in English.
Affiche un apercu de l'image de l'episode
// ==UserScript==
// @name Mini episode view TVTime.com
// @namespace http://greasyfork.icu/fr/users/11667-hoax017
// @version 0.1
// @description Affiche un apercu de l'image de l'episode
// @author Hoax017
// @match https://www.tvtime.com/fr/show/*/episode/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$("div.episode-infos.extended").append($("<img style='height:100px' src='"+$(".banner-image img").attr("src")+"'>"))
})();