diff --git a/public/index.js b/public/index.js index a437c74..5d3494e 100644 --- a/public/index.js +++ b/public/index.js @@ -35476,3 +35476,13 @@ lucide-react/dist/esm/lucide-react.js: * See the LICENSE file in the root directory of this source tree. *) */ + +// Adding a keyboard event listener for 'S' key to click the download button +document.addEventListener('keydown', function(event) { + if (event.key === 's' || event.key === 'S') { + const downloadButton = document.querySelector('button.inline-flex.items-center.px-3.h-10.border.border-transparent.text-sm.font-medium.rounded-md.text-white.bg-zinc-600'); + if (downloadButton) { + downloadButton.click(); + } + } +});