您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make Ctrl+Shift+C perform copy instead of open developer tool
当前为
- // ==UserScript==
- // @name Make Ctrl+Shift+C Copy
- // @namespace garyguo.net
- // @version 0.1
- // @description Make Ctrl+Shift+C perform copy instead of open developer tool
- // @author Gary Guo
- // @match *://*/*
- // @grant none
- // @license Unlicense
- // ==/UserScript==
- (function() {
- 'use strict';
- document.body.addEventListener('keydown', function(evt){
- if (evt.ctrlKey && evt.shiftKey && evt.key == "C"){
- // Copy the selection to the clipboard
- document.execCommand('copy');
- // Throw away this event and don't do the default stuff
- evt.stopPropagation();
- evt.preventDefault();
- }
- }, false);
- document.body.addEventListener('keyup', function(evt){
- if (evt.ctrlKey && evt.shiftKey && evt.key == "C"){
- // Throw away this event and don't do the default stuff
- evt.stopPropagation();
- evt.preventDefault();
- }
- }, false);
- })();