Luckybaud Plugin

Offers a more convinence way of checking grade: Allowing you to check your grade from the main screen in the Assignment Center!

目前為 2021-01-25 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Luckybaud Plugin
// @namespace    https://jianqinggao.com
// @version      0.1.1
// @description  Offers a more convinence way of checking grade: Allowing you to check your grade from the main screen in the Assignment Center!
// @author       Johnson Gao
// @match        https://*.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)
})