Programming Hero - Course Timeline Scrollable

Make course timeline scrollable

As of 2020-03-08. See the latest version.

// ==UserScript==
// @name         Programming Hero - Course Timeline Scrollable
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Make course timeline scrollable
// @author       Ramin
// @match        *://*bangla.programming-hero.com/*
// @run-at       document-end
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @grant        none
// ==/UserScript==

$(".global").append(
    `<style>.course_timeline.accordion {
    height: 75vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.unit_title {
    margin-bottom: 0px;
}</style>`);