This file contains hidden or 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 GitLab Always Show Path Remove Breadcrumbs | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Click on the Show Path Breadcrumb button to always display the full path | |
// @author wolfposd | |
// @match https://gitlab.com/* | |
// @icon https://about.gitlab.com/ico/favicon.ico?cache=2022041 | |
// @grant none | |
// @run-at document-end |
This file contains hidden or 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
// Scriptable script | |
// Execute Widget to create a one-time reminder for your sheduled workshift | |
// change the amounts of minutes to your work-duration | |
// 8 hours = 480 | |
// 8 hours work + 30 min break = 510 | |
// etc | |
let minutes = 460 | |
let titleFontSize = 22 | |
let reminderCategory = "Worktime" |
OlderNewer