Created
February 18, 2021 00:08
-
-
Save tbeckenhauer/d702cdefb33bc6e93fa248e40c34d268 to your computer and use it in GitHub Desktop.
Revisions
-
tbeckenhauer created this gist
Feb 18, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // ==UserScript== // @name LinkedIn Learning Large Screen // @namespace http://tampermonkey.net/ // @version 0.1 // @description resize linkedin learning video to the size of the browser. // @author You // @match https://www.linkedin.com/learning/* // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelector(".classroom-layout__stage").style.maxHeight = "100%" document.querySelector(".classroom-layout__stage").style.flex = "0 0 100%" })();