diff options
author | marlonivo <email@marlonivo.xyz> | 2025-05-26 09:57:07 +0200 |
---|---|---|
committer | marlonivo <email@marlonivo.xyz> | 2025-05-26 09:57:07 +0200 |
commit | fdc8d142c0b158412b0c42644d718cdcb0018abb (patch) | |
tree | e7b2e86d1649bcbe3fc91b12d6db83e6da053e23 /firefox/chrome/userChrome.js | |
parent | a911996472e6b08e963df229250d42015c9a481b (diff) |
Diffstat (limited to 'firefox/chrome/userChrome.js')
-rw-r--r-- | firefox/chrome/userChrome.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/firefox/chrome/userChrome.js b/firefox/chrome/userChrome.js new file mode 100644 index 0000000..659f9f5 --- /dev/null +++ b/firefox/chrome/userChrome.js @@ -0,0 +1,5 @@ +document.addEventListener('keydown', function(event) { + if (event.ctrlKey && event.shiftKey && event.key === 'V') { + document.documentElement.classList.toggle('hidden-toolbars'); + } +}); |