Automatically opens PMT PDFs as a PDF, rather than embedded in a weird viewer with an advert.
// ==UserScript==
// @name Open PDF as PDF
// @namespace Violentmonkey Scripts
// @match https://www.physicsandmathstutor.com/pdf-pages/*
// @grant none
// @version 1.0
// @author -
// @description Automatically opens PMT PDFs as a PDF, rather than embedded in a weird viewer with an advert.
// @license MIT
// ==/UserScript==
(function() {
window.location = new URLSearchParams(window.location.search).get('pdf');
})();