Skip to content

Instantly share code, notes, and snippets.

@roylez
Last active March 5, 2020 00:42
Show Gist options
  • Save roylez/4b2179d2b44a6f82705d927f16f75fe1 to your computer and use it in GitHub Desktop.
Save roylez/4b2179d2b44a6f82705d927f16f75fe1 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name LASidebarClose
// @namespace http://tampermonkey.net/
// @version 0.11
// @description try to take over the world!
// @author roylez
// @match https://linuxacademy.com/cp/courses/lesson/course/*/lesson/*
// @updateURL https://gist.github.com/4b2179d2b44a6f82705d927f16f75fe1/raw/LASidebarClose.user.js
// @downloadURL https://gist.github.com/4b2179d2b44a6f82705d927f16f75fe1/raw/LASidebarClose.user.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(".video-sidebar").addClass("invisible minimize")
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment