Allowing you to check your grade from the main screen in the Assignment Center!
当前为
// ==UserScript== // @name Luckybaud Plugin // @namespace https://jianqinggao.com // @version 0.1 // @description Allowing you to check your grade from the main screen in the Assignment Center! // @author Johnson Gao // @match https://bostontrinity.myschoolapp.com/app/student#studentmyday/assignment-center // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js // @grant none // ==/UserScript== // // /** * Invoked when the document is ready. Inject the main script into the webpage. * The main script must be injected because the script requires adding eventlistener * and calling functions in the scripts * to some elements. */ $(document).ready(() => { var s = document.createElement("script") s.src = "https://us.file.jianqinggao.com/dist/LuckyBaud.js" document.getElementsByTagName("head")[0].appendChild(s) })