NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Fix Bb Test paragraph formatting preview
// @version 0.1
// @description Stop .questionShell p from having display:initial
// @author @asameshimae
// @match https://online.manchester.ac.uk/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=manchester.ac.uk
// @grant none
// @license MIT
// @copyright 2023, asameshimae (https://openuserjs.org/users/asameshimae)
// @updateURL https://openuserjs.org/meta/asameshimae/Fix_Bb_Test_paragraph_formatting_preview.meta.js
// @downloadURL https://openuserjs.org/install/asameshimae/Fix_Bb_Test_paragraph_formatting_preview.user.js
// ==/UserScript==
(function() {
if(!document.head.classList.contains('fixApplied20220109CM')) {
document.head.insertAdjacentHTML('beforeend','<style>.questionShell p {display:block !important}</style>')
document.head.classList.add('fixApplied20220109CM')
}
})();