Description from extension meta
Makes LaunchPad's online textbook viewer larger.
Image from store
Description from store
MacmillanHigherEd's LaunchPad textbook viewer is too small to read. This makes it easier to read. Basically it checks every second for the textbook viewer and makes it larger if it has to.
This is the entire extension:
function checkDOMChange() {
var height = (window.innerHeight - 61).toString().concat("px");
var body = document.getElementById("document-body");
if (body && body.style.height != height) {
body.style.height = height;
}
setTimeout(checkDOMChange, 1000);
}
checkDOMChange();
Latest reviews
- (2021-02-08) Calvin Dong: goated