Last active
January 18, 2025 18:32
-
-
Save tberghuis/967c3f54ec8bf133c933946de982ae9e to your computer and use it in GitHub Desktop.
kotlin docs css show scroll bar find highlight all matches
This file contains 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 Kotlin Docs find all highlight scrollbar | |
// @namespace Violentmonkey Scripts | |
// @match https://www.jetbrains.com/help/* | |
// @grant GM_addStyle | |
// @version 1.0 | |
// @author - | |
// @description 18/01/2025, 12:49:35 | |
// ==/UserScript== | |
GM_addStyle ( ` | |
html,body,div { | |
overflow: visible !important; | |
height: auto !important; | |
} | |
` ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment