From 94f69d9caa96737312858dd3259be6b1e6265576 Mon Sep 17 00:00:00 2001 From: Clifford Date: Thu, 2 Jan 2020 12:02:40 -0600 Subject: [PATCH] Update version and URL scheme Tested working on: * List (FYI: URL without query param doesn't load anything): https://moderntribe.atlassian.net/projects/ET/issues/ET-420?filter=allopenissues * Single with sidebar: https://moderntribe.atlassian.net/browse/ETP-57?filter=-2 (Harvest loads via Ajax) * Single without sidebar: https://moderntribe.atlassian.net/browse/ETP-57 (Harvest is in initial page source; previous version of this script broke scrolling here but not at other 2 test URLs) --- jira/jira-remove-harvest.user.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/jira/jira-remove-harvest.user.js b/jira/jira-remove-harvest.user.js index 9ee380a..c4ca081 100644 --- a/jira/jira-remove-harvest.user.js +++ b/jira/jira-remove-harvest.user.js @@ -1,10 +1,10 @@ // ==UserScript== // @name Jira: Remove Harvest time tracking widget // @namespace https://moderntribe.atlassian.net/ -// @version 0.0.1 +// @version 0.0.2 // @description Customize and remove modules from Edit Screen // @author Modern Tribe Products -// @include https://moderntribe.atlassian.net/browse/* +// @include https://moderntribe.atlassian.net/* // @grant GM_addStyle // @downloadURL https://raw.githubusercontent.com/moderntribe/tampermonkey-scripts/master/jira/jira-remove-harvest.user.js // @run-at document-start @@ -14,5 +14,4 @@ 'use strict'; GM_addStyle( '#harvest__toggle-timer { display: none; }' ); - })();