Greasy Fork is available in English.

Youtube preview on key

video preview when hover thumnail with ctrl pressed

  1. // ==UserScript==
  2. // @name Youtube preview on key
  3. // @namespace https://greatest.deepsurf.us/users/821661
  4. // @match https://www.youtube.com/*
  5. // @grant GM_addStyle
  6. // @version 1.0
  7. // @author hdyzen
  8. // @description video preview when hover thumnail with ctrl pressed
  9. // @license MIT
  10. // ==/UserScript==
  11. 'use strict';
  12.  
  13. document.body.addEventListener(
  14. 'mouseenter',
  15. e => {
  16. if (e.target.closest('#dismissible, ytd-rich-grid-media') && !e.ctrlKey) {
  17. e.stopPropagation();
  18. }
  19. },
  20. true,
  21. );