summaryrefslogtreecommitdiff
path: root/firefox/chrome/userChrome.js
diff options
context:
space:
mode:
authormarlonivo <email@marlonivo.xyz>2025-05-26 09:57:07 +0200
committermarlonivo <email@marlonivo.xyz>2025-05-26 09:57:07 +0200
commitfdc8d142c0b158412b0c42644d718cdcb0018abb (patch)
treee7b2e86d1649bcbe3fc91b12d6db83e6da053e23 /firefox/chrome/userChrome.js
parenta911996472e6b08e963df229250d42015c9a481b (diff)
some changesHEADmain
Diffstat (limited to 'firefox/chrome/userChrome.js')
-rw-r--r--firefox/chrome/userChrome.js5
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');
+ }
+});