View is-pretty-math.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name IS pretty math | |
// @author David Pavlík | |
// @match https://is.muni.cz/auth/** | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const imgs = document.getElementsByTagName('img'); |
View fi-drill-keybings.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name FI Drill keybindings | |
// @author David Pavlík | |
// @match https://kabell.sk/fi_muni_drill/** | |
// @grant none | |
// ==/UserScript== | |
document.addEventListener('keypress', event => { | |
const bindings = { | |
'd': 'body > div.container.main > div > div.col-sm-9 > div:nth-child(3) > div div:contains(ne)', |