您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide the header and footer for a simple tracking experience
// ==UserScript== // @name Harvest time tracker simplifier // @namespace https://bengrant.dev // @version 0.2 // @description Hide the header and footer for a simple tracking experience // @author Ben Grant // @match https://*.harvestapp.com/* // @grant none // ==/UserScript== (function() { 'use strict'; let header = document.getElementById('global-header'); let footer = document.getElementById('global-footer'); let hidden = false; function action(hide) { if (hide) { header.style.display = 'none'; footer.style.display = 'none'; } else { header.style.display = 'block'; footer.style.display = 'block'; } hidden = hide; } action(true); document.onkeyup = (e) => { if (e.keyCode === 72) { // H action(!hidden); } }; })();