您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects you to the actual PDF page, so you dont need to listen to the crappy adverts.
// ==UserScript== // @name Physics and Maths Tutor PDF Redirect // @namespace http://www.physicsandmathstutor.com/ // @version 2024-01-04 // @description Redirects you to the actual PDF page, so you dont need to listen to the crappy adverts. // @author Calum H. // @license MIT // @match https://www.physicsandmathstutor.com/pdf-pages/* // @icon https://www.google.com/s2/favicons?sz=64&domain=physicsandmathstutor.com // @grant none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { const iframeElement = document.querySelector('#pdf-content > iframe'); if (iframeElement) { const pdfUrl = iframeElement.src; console.log('PDF URL:', pdfUrl); window.location.href = pdfUrl; } else { console.log('The iframe element was not found.'); } }, false); })();