Skip to content

Instantly share code, notes, and snippets.

@beeeswax
Last active March 1, 2022 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beeeswax/5169c5de1b0bb1a5031c45ca69e69f16 to your computer and use it in GitHub Desktop.
Save beeeswax/5169c5de1b0bb1a5031c45ca69e69f16 to your computer and use it in GitHub Desktop.
Every time you open Harvest (https://www.getharvest.com/) to a day without timelogs, it displays an aggressive quote about time. This simple user-script adds some CSS to remove this.
// ==UserScript==
// @name Harvest Quote-Away!
// @version 2
// @grant none
// @include https://*.harvestapp.com/*
// ==/UserScript==
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".hui-empty .do-not-print, #timesheets-empty .do-not-print { display: none }";
document.head.appendChild(css);
@beeeswax
Copy link
Author

beeeswax commented Apr 7, 2021

Harvest updated their styles, so a new version is released.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment