Odysee keyboard control fix

Fixes issues with keyboard scrolling and volume changes.

  1. // ==UserScript==
  2. // @name Odysee keyboard control fix
  3. // @namespace Violentmonkey Scripts
  4. // @match https://odysee.com/*
  5. // @grant none
  6. // @version 1.0
  7. // @author neruok
  8. // @description Fixes issues with keyboard scrolling and volume changes.
  9. // ==/UserScript==
  10.  
  11. window.addEventListener("keydown", function(e) {
  12. elem = document.activeElement
  13. if (elem.tagName === "VIDEO"){
  14. if(["Space","ArrowUp","ArrowDown","ArrowLeft","ArrowRight"].indexOf(e.code) > -1) {
  15. e.preventDefault();
  16. }
  17. }
  18. else {
  19. e.stopImmediatePropagation();
  20. }
  21. }, false);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址