Restore YouTube Right-Click Menu

Removes YouTube's custom right-click menu and restores the default browser menu.

目前為 2025-02-24 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Restore YouTube Right-Click Menu
  3. // @version 1.0
  4. // @description Removes YouTube's custom right-click menu and restores the default browser menu.
  5. // @match *://www.youtube.com/*
  6. // @grant none
  7. // @namespace https://greasyfork.org/users/1435046
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. document.addEventListener('contextmenu', (event) => {
  14. event.stopPropagation(); // Prevent YouTube from overriding the menu
  15. }, true);
  16. })();