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 GitHub Notifications Helper | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @downloadURL https://gist.github.com/jkbe/7928b023a9ab18f373e4b59e8522af92/raw/github-notifications-helper.user.js | |
// @description Add floating buttons to manage unhelpful GitHub notifications more easily. | |
// @author jkbe | |
// @match https://github.com/notifications* | |
// @grant none | |
// ==/UserScript== |
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 SoundCloud Loop Section with UI Controls | |
// @namespace http://tampermonkey.net/ | |
// @version 1.7 // Prevent running in iframes | |
// @downloadURL https://gist.github.com/jkbe/2aa45c9eb7aaacd472e9b60d53cd0b95/raw/soundcloud-loop-section.user.js | |
// @description Automatically loops a section of a SoundCloud track by jumping from timestamp Y back to X. Control loop via on-page UI. | |
// @author Your Name / AI Assistant | |
// @match https://soundcloud.com/*/* | |
// @grant GM_setValue | |
// @grant GM_getValue |
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 Copy Markdown link with HTML `<title>` with cmd+alt+shift+c | |
// @version 2025-02-23--2 | |
// @downloadURL https://gist.github.com/JakobEdding/2f3c2c3544958adcb79b36636ece185b/raw/copy-markdown-link-html-title.user.js | |
// ==/UserScript== | |
document.addEventListener('keydown', e => { | |
if (e.metaKey && e.altKey && e.shiftKey && e.code === 'KeyC' && !e.ctrlKey) { | |
navigator.clipboard.writeText(`[${document.title}](${window.location.href})`); | |
} |