summaryrefslogtreecommitdiff
path: root/chrome/userChrome.js
diff options
context:
space:
mode:
authormarlonivo <email@marlonivo.xyz>2024-08-09 04:45:37 +0000
committermarlonivo <email@marlonivo.xyz>2024-08-09 04:45:37 +0000
commit6142106b615db17313606a82e7c28b7f64131a19 (patch)
tree5f93d3046ec7f64a6144b5b31e8fc0b5e3e33679 /chrome/userChrome.js
parent30f9b7c04137885d90d13e8d7ab5091f2dd33f63 (diff)
update
Diffstat (limited to 'chrome/userChrome.js')
-rw-r--r--chrome/userChrome.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/userChrome.js b/chrome/userChrome.js
new file mode 100644
index 0000000..659f9f5
--- /dev/null
+++ b/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');
+ }
+});