scombZ時間割教室の修正

時間割のページで表示される教室の背景の透明度を下げることで可読性を上げます。

安裝腳本?
作者推薦腳本

您可能也會喜歡 ScombZ-Utilities

安裝腳本
// ==UserScript==
// @name         scombZ時間割教室の修正
// @namespace    twitter.com/to_ku_me
// @version      0.1.2
// @description  時間割のページで表示される教室の背景の透明度を下げることで可読性を上げます。
// @author       とくめいっ!
// @match        https://scombz.shibaura-it.ac.jp/lms/timetable
// @icon         http://www.sic.shibaura-it.ac.jp/MoSICA/shikaz.png
// ==/UserScript==

let style = `<style>
.ui-widget-shadow {
	opacity: 1;
}
<style>`;

document.querySelector(`head`).insertAdjacentHTML('beforeend', style);