Skip to content

Instantly share code, notes, and snippets.

@ankona
Last active February 6, 2021 04:38
Show Gist options
  • Save ankona/246280bb3c36b967d5bc2d37c5b365ac to your computer and use it in GitHub Desktop.
Save ankona/246280bb3c36b967d5bc2d37c5b365ac to your computer and use it in GitHub Desktop.
tampermonkey - allow wider canvas video resize
// ==UserScript==
// @name Canvas Video Resize
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Allow the video to resize as large as browser resizes.
// @author You
// @match https://gatech.instructure.com/courses/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById('wrapper').style.maxWidth = "2000px";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment