Skip to content

Instantly share code, notes, and snippets.

@tberghuis
Last active January 18, 2025 18:32
Show Gist options
  • Save tberghuis/967c3f54ec8bf133c933946de982ae9e to your computer and use it in GitHub Desktop.
Save tberghuis/967c3f54ec8bf133c933946de982ae9e to your computer and use it in GitHub Desktop.
kotlin docs css show scroll bar find highlight all matches
// ==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