Ouverture auto du PDF sur Moodle

Permet d'ouvrir automatiquement les PDF au lieu d'avoir juste un embed sur Moodle

// ==UserScript==
// @name         Ouverture auto du PDF sur Moodle
// @description  Permet d'ouvrir automatiquement les PDF au lieu d'avoir juste un embed sur Moodle
// @version      2025-06-11
// @author       Lucie Delestre
// @match        https://moodle.imt-atlantique.fr/mod/resource/view.php*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=imt-atlantique.fr
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/769269
// ==/UserScript==

(function() {
    'use strict';
    try {
        window.location.replace(document.getElementsByTagName("object")[0].data);
    } catch (e) {
        console.log(e);
    }
})();