| // ==UserScript==␊ |
| // @name Blackboard fix␊ |
| // @namespace https://srchub.org␊ |
| // @version 0.3␊ |
| // @version 0.4␊ |
| // @description Fixes the grade center to actually be usable␊ |
| // @author Nathan Adams <nathan@allostech.com>␊ |
| // @match https://lewisuniversity.blackboard.com/*␊ |
|
| // If you feel this script was useful please send BTC donations to this address: ␊ |
| // 1kqfr9hYPHTwGdMev9b538sSeyLa5h4FR␊ |
| //␊ |
| ␊ |
| GM_addStyle('@-moz-document domain(lewisuniversity.blackboard.com) { .gbtable tbody tr td, .gbtable tbody tr th, .gbtable_header th, .gbtable thead th { padding: 0px !important; height: 0px !important; }}'); |
| ␊ |
| var style = '<style>.gbtable tbody tr td, .gbtable tbody tr th, .gbtable_header th, .gbtable thead th { padding: 0px !important; height: 0px !important; }</style>'); ␊ |
| $('html > head').append(style);␊ |