Skip to content

Instantly share code, notes, and snippets.

@yoon
Created March 25, 2015 22:38
Show Gist options
  • Save yoon/14ea0bbd9911315409dd to your computer and use it in GitHub Desktop.
Save yoon/14ea0bbd9911315409dd to your computer and use it in GitHub Desktop.
GreaseMonkey / TamperMonkey script to Hide HarvestApp "Submit for Approval" button
// ==UserScript==
// @name Hide HarvestApp "Submit for Approval" button
// @namespace http://tablexi.harvestapp.com/
// @version 0.1
// @description This script hides anything with the .approval-button class
// @author Mark Yoon
// @match https://tablexi.harvestapp.com/*
// @grant GM_addStyle
// ==/UserScript==
$('.approval-button').hide();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment