Skip to content

Instantly share code, notes, and snippets.

@modeverv
Last active January 4, 2020 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save modeverv/2e166594b45d6d528b7d75d52155e989 to your computer and use it in GitHub Desktop.
Save modeverv/2e166594b45d6d528b7d75d52155e989 to your computer and use it in GitHub Desktop.
display eds with full browser width
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://courses.edx.org/courses/*
// @grant none
/* load jQuery */
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
$(".course-wrapper .course-content .xblock.xblock-student_view-vertical").css("max-width","100%");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment