Mini episode view TVTime.com

Affiche un apercu de l'image de l'episode

// ==UserScript==
// @name         Mini episode view TVTime.com
// @namespace    https://greasyfork.org/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")+"'>"))
})();