Last active
November 26, 2023 20:39
-
-
Save berteh/0b08376fd842cbb9e72f62ea4c89806f to your computer and use it in GitHub Desktop.
small improvements to litefarm online app
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 LiteFarm customisation | |
// @namespace https://app.litefarm.org/ | |
// @version 0.2 | |
// @description small hacks to improve litefarm useability | |
// @author Berteh | |
// @match https://app.litefarm.org/tasks | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=litefarm.org | |
// @downloadURL https://gist.github.com/berteh/0b08376fd842cbb9e72f62ea4c89806f/raw/litefarm-useability.user.js | |
// @grant GM_addStyle | |
// @run-at document-idle | |
// ==/UserScript== | |
//clean print output | |
GM_addStyle("@media print {"+ | |
'header {display:none}'+ | |
''+ | |
''+ | |
"}" | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment