您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Let Shift+Right Click bypass any page handler silently
// ==UserScript== // @name Enable Right Click with Shift // @namespace http://xplshn.com.ar // @description Let Shift+Right Click bypass any page handler silently // @version 1.0 // @license Unlicense // @encoding utf-8 // @icon https://github.com/xplshn.png // @include *://* // @grant none // ==/UserScript== (function () { 'use strict'; // This runs before any other contextmenu handlers document.addEventListener('contextmenu', function (e) { if (e.shiftKey) { // Only stop propagation if Shift is held *during* right click e.stopImmediatePropagation(); } }, true); })();