Edmentum Show Sample Answers

Always shows sample answer buttons when they exist, regardless of whether the question has been submitted

// ==UserScript==
// @name         Edmentum Show Sample Answers
// @namespace    EdmentumShowSampleAnswers
// @version      0.2
// @description  Always shows sample answer buttons when they exist, regardless of whether the question has been submitted
// @author       Origami Toast
// @match        https://app.edmentum.com/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

for(let nav of document.getElementsByClassName('SampleAnswerNav')){
    nav.style = {}
    nav.firstElementChild.style.display = 'inline-block'
}

for(let nav of document.getElementsByClassName('buttonCorrectToggle')){
    nav.style.display = 'inline'
    nav.style.visibility = 'visible'
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址